13 lines
260 B
Nix
13 lines
260 B
Nix
{config, ...}: {
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
|
|
hardware = {
|
|
graphics.enable = true;
|
|
|
|
nvidia = {
|
|
modesetting.enable = true;
|
|
open = false;
|
|
package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
|
};
|
|
};
|
|
}
|