15 lines
194 B
Nix
15 lines
194 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
hardware.nvidia = {
|
|
modesetting.enable = true;
|
|
open = false;
|
|
};
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
|
|
hardware.opengl = {
|
|
enable = true;
|
|
};
|
|
}
|