diff options
author | ene <ene@sils.li> | 2023-02-01 21:33:11 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-03 17:34:11 +0100 |
commit | 871d3f95963eac25765427ecca9a8e4812071439 (patch) | |
tree | 5dcf241ece31050cf0c74219852242abe504e068 /hosts/IDOHVE/hardware/gpu.nix | |
parent | Build(flake): Added Flake.lock (diff) | |
download | nixos-config-871d3f95963eac25765427ecca9a8e4812071439.tar.gz nixos-config-871d3f95963eac25765427ecca9a8e4812071439.zip |
Feat: Split the config apart
Diffstat (limited to 'hosts/IDOHVE/hardware/gpu.nix')
-rw-r--r-- | hosts/IDOHVE/hardware/gpu.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/IDOHVE/hardware/gpu.nix b/hosts/IDOHVE/hardware/gpu.nix new file mode 100644 index 00000000..49197c2b --- /dev/null +++ b/hosts/IDOHVE/hardware/gpu.nix @@ -0,0 +1,16 @@ +{ + config, + pkgs, + lib, + ... +}: { + + hardware.opengl.extraPackages = with pkgs; [ + rocm-opencl-icd # open-cl + amdvlk # or directly through mesa + amd-media-driver # libva + ]; + + # Force radv, TODO is this logical? + environment.variables.AMD_VULKAN_ICD = "RADV"; +} |