nix/modules/system/desktop/amd.nix

18 lines
290 B
Nix
Raw Normal View History

2024-03-12 21:38:05 +01:00
{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [
amdvlk
];
hardware.opengl.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
2024-03-18 16:30:09 +01:00
programs.gamemode.enable = true;
2024-03-12 21:38:05 +01:00
}