diff options
author | Silas Schöffel <sils@sils.li> | 2025-01-21 21:21:14 +0100 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2025-01-21 21:29:50 +0100 |
commit | 1b04a415e98b72841e6b9dba0b0c030428ba0434 (patch) | |
tree | 120cd8919c2929255ee8be597fb782d42a453ada /hosts/by-name/server1/configuration.nix | |
parent | fix(modules/peertube): correct email setup (diff) | |
download | nixos-server-1b04a415e98b72841e6b9dba0b0c030428ba0434.zip |
feat(modules/backup): init
Diffstat (limited to '')
-rw-r--r-- | hosts/by-name/server1/configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/by-name/server1/configuration.nix b/hosts/by-name/server1/configuration.nix index 95a0766..5b5ede6 100644 --- a/hosts/by-name/server1/configuration.nix +++ b/hosts/by-name/server1/configuration.nix @@ -7,6 +7,12 @@ ]; vhack = { + backup = { + enable = true; + privateSshKey = ./secrets/backupssh.age; + privatePassword = ./secrets/backuppass.age; + user = "u384702-sub2"; + }; etesync.enable = true; nginx.enable = true; openssh.enable = true; |