40 lines
892 B
Nix
40 lines
892 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
secrets = config.services.secrets.secrets;
|
||
|
in {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
restic
|
||
|
(pkgs.writeShellScriptBin "restic-owncast" ''
|
||
|
env \
|
||
|
RESTIC_PASSWORD_FILE=${secrets.restic_password.path} \
|
||
|
$(cat ${secrets.restic_env.path}) \
|
||
|
${pkgs.restic}/bin/restic $@
|
||
|
'')
|
||
|
];
|
||
|
|
||
|
services.restic.backups.owncast = {
|
||
|
user = "root";
|
||
|
paths = [
|
||
|
"/var/lib/owncast"
|
||
|
];
|
||
|
|
||
|
# repository is overrided in environmentFile to contain auth
|
||
|
# make sure to keep up to date when changing repository
|
||
|
repository = "rest:https://storage-restic.owo.monster/Owncast";
|
||
|
passwordFile = "${secrets.restic_password.path}";
|
||
|
environmentFile = "${secrets.restic_env.path}";
|
||
|
|
||
|
pruneOpts = [
|
||
|
"--keep-last 5"
|
||
|
];
|
||
|
|
||
|
timerConfig = {
|
||
|
OnBootSec = "10m";
|
||
|
OnCalendar = "8h";
|
||
|
};
|
||
|
};
|
||
|
}
|