Files
gooberos/modules/base/sleep.nix

13 lines
291 B
Nix
Raw Normal View History

{
systemd.sleep.settings.Sleep = {
# AllowSuspend = "no";
AllowHybridSleep = "no";
AllowSuspendThenHibernate = "no";
# HibernationMode = "shutdown";
};
boot.kernelParams = [
"vm.swappiness=30"
2026-04-28 08:43:16 +02:00
# "hibernate.compressor=lz4"
];
}