Files
nix-fleet/modules/desktop/sys/gpu-amd.nix
2026-03-03 23:06:45 +01:00

17 lines
359 B
Nix

{ ... }: {
flake.nixosModules.desktop-sys-gpu-amd = { pkgs, ... }: {
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "amdgpu" ];
hardware.amdgpu.initrd.enable = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
};
environment.systemPackages = with pkgs; [
vulkan-tools
];
};
}