diff options
author | lassulus <lassulus@lassul.us> | 2020-09-27 15:15:13 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-09-27 15:15:13 +0200 |
commit | db997dd0742c8c180cf88d89db052f865c477773 (patch) | |
tree | 047e0bbabd4404fba4e21e17d324af497394f8e5 /lass | |
parent | e2a86527908e4ea0ccc30790b74ea2f9ba0409a6 (diff) |
l blue: disable restic backups
Diffstat (limited to 'lass')
-rw-r--r-- | lass/1systems/blue/config.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lass/1systems/blue/config.nix b/lass/1systems/blue/config.nix index c46bb351e..f6dc23d20 100644 --- a/lass/1systems/blue/config.nix +++ b/lass/1systems/blue/config.nix @@ -17,27 +17,6 @@ with import <stockholm/lib>; networking.nameservers = [ "1.1.1.1" ]; - services.restic.backups = genAttrs [ - "daedalus" - "icarus" - "littleT" - "prism" - "shodan" - "skynet" - ] (dest: { - initialize = true; - extraOptions = [ - "sftp.command='ssh backup@${dest}.r -i ${config.krebs.build.host.ssh.privkey.path} -s sftp'" - ]; - repository = "sftp:backup@${dest}.r:/backups/blue"; - passwordFile = (toString <secrets>) + "/restic/${dest}"; - timerConfig = { OnCalendar = "00:05"; RandomizedDelaySec = "5h"; }; - paths = [ - "/home/" - "/var/lib" - ]; - }); - time.timeZone = "Europe/Berlin"; users.users.mainUser.openssh.authorizedKeys.keys = [ config.krebs.users.lass-android.pubkey ]; } |