When the power comes back, we don't know if the AC unit will be operating properly or if the room will be at a safe temperature. So, instead of powering all the machines back, only configure the login to power on, so we can check the state of the room and power the rest of the machines.
10 lines
207 B
Nix
10 lines
207 B
Nix
{
|
|
imports = [
|
|
../../module/power-policy.nix
|
|
];
|
|
|
|
# By default, keep the machines off as we don't know if the AC will be working
|
|
# once the electricity comes back.
|
|
power.policy = "always-off";
|
|
}
|