1
0
Fork 0
nix-configuration/modules/system/gpu/amd.nix

28 lines
548 B
Nix
Raw Normal View History

# Enables AMD GPU support.
{
pkgs,
config,
lib,
...
}:
let
cfg = config.aux.system.gpu.amd;
in
{
options = {
2024-09-08 11:58:56 -04:00
aux.system.gpu.amd.enable = lib.mkEnableOption "Enables AMD GPU support.";
};
config = lib.mkIf cfg.enable {
boot.initrd.kernelModules = [ "amdgpu" ];
2024-06-24 13:08:18 -04:00
services.xserver.videoDrivers = [ "amdgpu" ];
2024-07-26 14:54:01 -04:00
hardware.opengl = {
extraPackages = [ pkgs.amdvlk ];
# 32-bit application compatibility
2024-07-26 14:54:01 -04:00
driSupport32Bit = true;
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
};
};
}