mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
mauville: add timer for backblaze-sync
This commit is contained in:
parent
b69a2f6de6
commit
40020eef87
|
@ -16,9 +16,11 @@
|
||||||
];
|
];
|
||||||
users.aly = {
|
users.aly = {
|
||||||
imports = [../../aly.nix];
|
imports = [../../aly.nix];
|
||||||
systemd.user.services.backblaze-sync = {
|
systemd.user = {
|
||||||
|
services.backblaze-sync = {
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "Push Syncthing folders to Backblaze.";
|
Description = "Backup to Backblaze.";
|
||||||
|
After = ["network.target"];
|
||||||
};
|
};
|
||||||
Install = {
|
Install = {
|
||||||
WantedBy = ["default.target"];
|
WantedBy = ["default.target"];
|
||||||
|
@ -36,6 +38,18 @@
|
||||||
''}";
|
''}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
timers.backblaze-sync = {
|
||||||
|
Unit = {
|
||||||
|
Description = "Daily backups to Backblaze.";
|
||||||
|
};
|
||||||
|
Install = {
|
||||||
|
WantedBy = ["timers.target"];
|
||||||
|
};
|
||||||
|
Timer = {
|
||||||
|
OnCalendar = "*-*-* 03:00:00";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
users.dustin = import ../../dustin.nix;
|
users.dustin = import ../../dustin.nix;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue