🐛 fix hibernate not working
parent
8588090542
commit
82838351bd
|
@ -49,6 +49,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
console.keyMap = "de";
|
||||||
|
|
||||||
|
# needed for enabling hibernation
|
||||||
|
security.protectKernelImage = false;
|
||||||
|
|
||||||
# Powersaving
|
# Powersaving
|
||||||
services.tlp.enable = true;
|
services.tlp.enable = true;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# NOTE Was removed on nixpkgs-unstable because it doesn't do anything
|
# NOTE Was removed on nixpkgs-unstable because it doesn't do anything
|
||||||
# security.hideProcessInformation = true;
|
# security.hideProcessInformation = true;
|
||||||
# Prevent replacing the running kernel w/o reboot
|
# Prevent replacing the running kernel w/o reboot
|
||||||
security.protectKernelImage = true;
|
security.protectKernelImage = lib.mkDefault true;
|
||||||
|
|
||||||
# tmpfs = /tmp is mounted in ram. Doing so makes temp file management speedy
|
# tmpfs = /tmp is mounted in ram. Doing so makes temp file management speedy
|
||||||
# on ssd systems, and volatile! Because it's wiped on reboot.
|
# on ssd systems, and volatile! Because it's wiped on reboot.
|
||||||
|
|
Loading…
Reference in New Issue