mirror of
https://github.com/thegeneralist01/config.git
synced 2026-03-07 10:59:55 +01:00
10 lines
214 B
Nix
10 lines
214 B
Nix
{ lib, config, ... }: lib.mkIf (!config.isServer) {
|
|
hardware.nvidia = {
|
|
open = true;
|
|
modesetting.enable = true;
|
|
};
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
|
|
hardware.graphics.enable = true;
|
|
}
|