Change kasei nvidia driver
This commit is contained in:
parent
47794d1ea4
commit
b7d71c1e69
|
@ -4,8 +4,10 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.xserver.enable = true;
|
||||||
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
|
|
||||||
# TODO: See ../common.nix
|
# TODO: See ../common.nix
|
||||||
services.xserver.enable = true;
|
|
||||||
services.xserver.displayManager.lightdm.enable = true;
|
services.xserver.displayManager.lightdm.enable = true;
|
||||||
|
|
||||||
machineVars = {
|
machineVars = {
|
||||||
|
@ -40,15 +42,19 @@
|
||||||
|
|
||||||
# security.pam.services.login.unixAuth = true;
|
# security.pam.services.login.unixAuth = true;
|
||||||
|
|
||||||
boot.loader = {
|
boot = {
|
||||||
efi.canTouchEfiVariables = false;
|
blacklistedKernelModules = ["nouveau"];
|
||||||
grub = {
|
kernelParams = ["nomodeset"];
|
||||||
enable = true;
|
loader = {
|
||||||
version = 2;
|
efi.canTouchEfiVariables = false;
|
||||||
efiSupport = true;
|
grub = {
|
||||||
fsIdentifier = "label";
|
enable = true;
|
||||||
device = "nodev";
|
version = 2;
|
||||||
efiInstallAsRemovable = true;
|
efiSupport = true;
|
||||||
|
fsIdentifier = "label";
|
||||||
|
device = "nodev";
|
||||||
|
efiInstallAsRemovable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue