mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:53:55 -05:00
mauville: add timer for backblaze-sync
This commit is contained in:
parent
b69a2f6de6
commit
40020eef87
|
@ -16,9 +16,11 @@
|
|||
];
|
||||
users.aly = {
|
||||
imports = [../../aly.nix];
|
||||
systemd.user.services.backblaze-sync = {
|
||||
systemd.user = {
|
||||
services.backblaze-sync = {
|
||||
Unit = {
|
||||
Description = "Push Syncthing folders to Backblaze.";
|
||||
Description = "Backup to Backblaze.";
|
||||
After = ["network.target"];
|
||||
};
|
||||
Install = {
|
||||
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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue