My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[hosts.marvin] add intel ocl/transcoding drivers

dish 04e2f37a 36747921

+9 -1
+9 -1
hosts/marvin/hardware.nix
··· 1 + { pkgs, ... }: 1 2 { 2 3 hardware = { 3 4 enableAllFirmware = true; ··· 7 8 ckb-next.enable = false; 8 9 cpu.amd.updateMicrocode = true; 9 10 gpgSmartcards.enable = true; 10 - graphics.enable = true; 11 + graphics = { 12 + enable = true; 13 + extraPackages = with pkgs; [ 14 + intel-media-driver 15 + intel-ocl 16 + intel-compute-runtime 17 + ]; 18 + }; 11 19 }; 12 20 }