Fix shutdown units

This commit is contained in:
Hendrik Sokolowski 2022-11-27 23:35:12 +01:00
parent d76c82bcbc
commit 0e661856bf
Signed by untrusted user: hensoko
GPG key ID: 5C36A01B80BCCC59

View file

@ -37,7 +37,8 @@ in
systemd.services."shutdown-after-backup" = {
enable = true;
serviceConfig = {
ExecStart = shutdownScript;
ExecStart = "${pkgs.bash}/bin/bash ${shutdownScript}";
Type = "oneshot";
};
};
@ -47,5 +48,6 @@ in
OnCalendar = "3..9:*";
};
wantedBy = [ "timers.target" ];
partOf = [ "shutdown-after-backup.service" ];
};
}