about summary refs log tree commit diff stats
path: root/hosts/tiamat/hardware/gpu.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 18:30:43 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 18:30:43 +0200
commitbb009258411a2894555e4551a9ae151402d2c27e (patch)
tree92a038995df6f62de243690692efe7e85b2391b6 /hosts/tiamat/hardware/gpu.nix
parentbuild(flake): Update (diff)
downloadnixos-config-bb009258411a2894555e4551a9ae151402d2c27e.zip
refactor(hosts/tiamat): Adapt to the new modules for system
Diffstat (limited to '')
-rw-r--r--hosts/tiamat/hardware/gpu.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/hosts/tiamat/hardware/gpu.nix b/hosts/tiamat/hardware/gpu.nix
deleted file mode 100644
index abb6c19f..00000000
--- a/hosts/tiamat/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
-    ];
-  };
-}