Files
nix-dotfiles/systems/artemision/graphics.nix
ahuston-0 d2092eea56
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 19s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 4m53s
update amd graphics
2025-10-10 14:56:04 -04:00

18 lines
336 B
Nix

{ pkgs, ... }:
{
hardware.graphics = {
## radv: an open-source Vulkan driver from freedesktop
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
];
extraPackages32 = with pkgs; [
rocmPackages.clr.icd
];
};
services.xserver.videoDrivers = [ "amdgpu" ];
}