mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 19:41:30 +00:00
33 lines
767 B
Nix
33 lines
767 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
cfg = config.services.userdata;
|
|
in
|
|
{
|
|
|
|
systemd = {
|
|
services = {
|
|
"restic-backup" = {
|
|
description = "Userdata restic backup trigger";
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
User = "restic";
|
|
ExecStart = "${pkgs.restic}/bin/restic -o rclone.args="serve restic --stdio" -r rclone:backblaze:${cfg.backblaze.bucket}:/sfbackup --verbose --json backup /var";
|
|
};
|
|
};
|
|
};
|
|
timers = {
|
|
"restic-scheduled-backup" = {
|
|
wantedBy = [ "timers.target" ];
|
|
partOf = [ "restic-backup.service" ];
|
|
timerConfig = {
|
|
OnCalendar = "daily";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
users.users.restic = {
|
|
isNormalUser = false;
|
|
isSystemUser = true;
|
|
};
|
|
}
|