diff options
Diffstat (limited to 'accounts/root@sif.nix')
-rw-r--r-- | accounts/root@sif.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/accounts/root@sif.nix b/accounts/root@sif.nix new file mode 100644 index 00000000..979463ba --- /dev/null +++ b/accounts/root@sif.nix | |||
@@ -0,0 +1,18 @@ | |||
1 | { userName, ... }: | ||
2 | { | ||
3 | home-manager.users.${userName} = { | ||
4 | programs.ssh.matchBlocks = { | ||
5 | "git.yggdrasil.li" = { | ||
6 | user = "gitolite"; | ||
7 | identityFile = "~/.ssh/sysconf"; | ||
8 | }; | ||
9 | "borg.munin" = { | ||
10 | hostname = "u120515.your-storagebox.de"; | ||
11 | user = "u120515"; | ||
12 | identityFile = "~/.ssh/borg.munin"; | ||
13 | identitiesOnly = true; | ||
14 | port = 23; | ||
15 | }; | ||
16 | }; | ||
17 | }; | ||
18 | } | ||