diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-18 12:06:34 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-18 12:06:34 +0000 |
commit | 88c90466a46ed89f8c8640c37627faf8b607b101 (patch) | |
tree | 0cc99051516addde424c3aa839fdc20382ee8c83 /nix-conf/home/includes/common.nix | |
parent | 5e54ddda0811368b64353c45192366d26803cba2 (diff) | |
download | dotfiles-88c90466a46ed89f8c8640c37627faf8b607b101.tar.gz |
Add restic backup configuration
Diffstat (limited to 'nix-conf/home/includes/common.nix')
-rw-r--r-- | nix-conf/home/includes/common.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index 9a3ef30..2dc3a8a 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -261,6 +261,22 @@ in identityFile = "~/.ssh/id_ed25519"; identitiesOnly = true; }; + "hb-backup" = { + hostname = "de1.hashbang.sh"; + identityFile = "~/.ssh/hb_backup_key"; + identitiesOnly = true; + }; + "bs-backup" = { + hostname = "ssh.blinkenshell.org"; + port = 2222; + identityFile = "~/.ssh/bs_backup_key"; + identitiesOnly = true; + }; + "tt-backup" = { + hostname = "tilde.team"; + identityFile = "~/.ssh/tt_backup_key"; + identitiesOnly = true; + }; }; }; |