about summary refs log tree commit diff stats
path: root/hosts/IDOHVE/gpu.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-01 21:33:11 +0100
committerene <ene@sils.li>2023-02-03 17:34:11 +0100
commit871d3f95963eac25765427ecca9a8e4812071439 (patch)
tree5dcf241ece31050cf0c74219852242abe504e068 /hosts/IDOHVE/gpu.nix
parentBuild(flake): Added Flake.lock (diff)
downloadnixos-config-871d3f95963eac25765427ecca9a8e4812071439.tar.gz
nixos-config-871d3f95963eac25765427ecca9a8e4812071439.zip
Feat: Split the config apart
Diffstat (limited to 'hosts/IDOHVE/gpu.nix')
-rw-r--r--hosts/IDOHVE/gpu.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/hosts/IDOHVE/gpu.nix b/hosts/IDOHVE/gpu.nix
deleted file mode 100644
index 6796d04b..00000000
--- a/hosts/IDOHVE/gpu.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  config,
-  pkgs,
-  lib,
-  ...
-}: {
-  hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; # TODO
-
-  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";
-}