looks fine

This commit is contained in:
Ingolf Wagner 2019-10-28 18:33:40 +01:00
parent f92e1ec78b
commit bfbad5285e
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -8,29 +8,46 @@
};
};
config = {
config = let
servers = ["porani" "workhorse" "workout"];
dirs = config.backup.all.restic.dirs;
backup.services.restic =
let
setup = server: {
passwordFile = toString <secrets/backup/restic-repo>;
repo = "sftp::backup/remote-${config.networking.hostName}";
requires = [];
extraArguments = [
"sftp.command='ssh backup@${server} -i ${toString <secrets/backup/sftp-user_rsa>} -s sftp'"
];
initialize = true;
timerConfig = {
OnCalendar = "daily";
Persistent = "true";
};
dirs = config.backup.all.restic.dirs;
setup = server: {
passwordFile = toString <secrets/backup/restic-repo>;
repo = "sftp::backup/remote-${config.networking.hostName}";
requires = [];
extraArguments = [
"sftp.command='ssh backup@${server} -i ${toString <secrets/backup/sftp-user_rsa>} -s sftp'"
];
initialize = true;
timerConfig = {
OnCalendar = "daily";
Persistent = "true";
};
in
{
"on-porani" = setup "porani.private";
"on-workhorse" = setup "workhorse.private";
"on-workout" = setup "workout.private";
dirs = dirs;
};
hostname = config.networking.hostName;
infoEntry = server: {
restic = {
folders = dirs;
from = hostname;
to = server;
};
};
in {
backup.services.restic = lib.zipAttrsWith
(name: vals: lib.head vals)
(map (server: {
"on-${server}" = setup "${server}.private";
}) servers);
environment.etc."info/restic-${hostname}.json" = {
enable = true;
text = builtins.toJSON (map infoEntry servers);
};
};
}