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