Merge branch 'master' of git.uninsane.org:shelvacu/nix-stuff

This commit is contained in:
Shelvacu
2025-05-29 20:31:22 -07:00
committed by Shelvacu on fw
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
./networking.nix ./networking.nix
./doof.nix ./doof.nix
./sops.nix ./sops.nix
./gpu.nix
( (
{ {
config, config,

8
prophecy/gpu.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config, ... }:
{
hardware.graphics = { enable = true; enable32Bit = true; };
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
hardware.nvidia.open = false;
services.xserver.videoDrivers = [ "nvidia" ];
vacu.packages = "nv-codec-headers-12";
}