mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-02-23 14:53:56 +01:00
9 lines
190 B
Nix
9 lines
190 B
Nix
{config, pkgs, ...}:
|
|
|
|
{
|
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
|
hardware.graphics.enable = true;
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware.nvidia.open = false;
|
|
}
|