29 lines
498 B
Nix
29 lines
498 B
Nix
{ pkgs, ... }: {
|
|
systemd.services.backup = {
|
|
enable = true;
|
|
description = "Home system backup.";
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "/etc/bin/Backup";
|
|
};
|
|
path = with pkgs; [
|
|
bashInteractive
|
|
curl
|
|
gnutar
|
|
gzip
|
|
gawk
|
|
pv
|
|
];
|
|
# wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
systemd.timers.backup = {
|
|
timerConfig = {
|
|
OnCalendar = "*-*-* 06:00:00";
|
|
Persistent = true;
|
|
Unit = "backup.service";
|
|
};
|
|
wantedBy = [ "timers.target" ];
|
|
};
|
|
}
|