diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 13:55:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 13:55:24 +0200 |
commit | 64aa355a5882a4c088e8de455edb6cd2eec2213c (patch) | |
tree | 6e069e2c5a83b39728140a04452405073079d05a /hosts/apzu/hardware/gpu.nix | |
parent | fix(modules/system): Re-add the laptop settings for home-manager comp (diff) | |
download | nixos-config-64aa355a5882a4c088e8de455edb6cd2eec2213c.tar.gz nixos-config-64aa355a5882a4c088e8de455edb6cd2eec2213c.zip |
refactor(hosts/apzu): Use new modules
Diffstat (limited to '')
-rw-r--r-- | hosts/apzu/hardware/gpu.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/hosts/apzu/hardware/gpu.nix b/hosts/apzu/hardware/gpu.nix deleted file mode 100644 index 74e146e2..00000000 --- a/hosts/apzu/hardware/gpu.nix +++ /dev/null @@ -1,20 +0,0 @@ -{pkgs, ...}: { - # 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"; - - hardware.opengl = { - enable = true; - extraPackages = with pkgs; [ - vaapiVdpau - libvdpau-va-gl - - #amdvlk # or directly through mesa - ]; - }; -} |