nix/module/AmdGpu.nix

33 lines
657 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
lib,
pkgs,
...
}: let
cfg = config.module.amd.gpu;
in {
options.module.amd.gpu.enable = lib.mkEnableOption "the AMD Gpu support.";
2024-03-20 22:33:37 +03:00
2024-11-04 04:37:29 +03:00
config = lib.mkIf cfg.enable {
environment.variables.AMD_VULKAN_ICD = "RADV";
boot.initrd.kernelModules = [
"amdgpu"
];
services.xserver.videoDrivers = [
"amdgpu"
];
hardware.graphics = {
enable = true;
enable32Bit = true;
};
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
# AMDVLK was broken for me (huge stuttering). So keep it disabled, at least for now.
# hardware.opengl.extraPackages = with pkgs; [
# amdvlk
# ];
# hardware.opengl.extraPackages32 = with pkgs; [
# driversi686Linux.amdvlk
# ];
};
}