12 lines
184 B
Nix
12 lines
184 B
Nix
{
|
|
imports = [
|
|
./cloud-init.nix
|
|
];
|
|
systemd.sleep.extraConfig = ''
|
|
AllowSuspend=no
|
|
AllowHibernation=no
|
|
AllowHybridSleep=no
|
|
AllowSuspendThenHibernate=no
|
|
'';
|
|
}
|