nixos-cesium/nixos/cesium.nix
2026-03-17 18:58:51 +01:00

21 lines
389 B
Nix

{ config, ... }:
{
hardware.nvidia = {
modesetting.enable = true;
open = false;
powerManagement.enable = true;
nvidiaPersistenced = true;
};
boot.kernelParams = [ "nvidia.NVreg_PreserveVideoMemoryAllocations=1" ];
services.xserver.videoDrivers = [ "nvidia" ];
hardware.graphics = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 9003 ];
}