Files
gooberos/modules/base/sleep.nix

13 lines
289 B
Nix
Raw Normal View History

{
systemd.sleep.settings.Sleep = {
# AllowSuspend = "no";
AllowHybridSleep = "no";
AllowSuspendThenHibernate = "no";
# HibernationMode = "shutdown";
};
boot.kernelParams = [
"vm.swappiness=30"
"hibernate.compressor=lz4"
];
}