diff options
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/gkleen@sif/default.nix | 2 | ||||
-rw-r--r-- | accounts/root@sif.nix | 18 |
2 files changed, 20 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 163e75f1..cbf146dd 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -179,6 +179,8 @@ in { | |||
179 | stateVersion = "20.03"; | 179 | stateVersion = "20.03"; |
180 | }; | 180 | }; |
181 | 181 | ||
182 | fonts.fontconfig.enable = true; | ||
183 | |||
182 | systemd.user = import ./systemd.nix inputs; | 184 | systemd.user = import ./systemd.nix inputs; |
183 | }; | 185 | }; |
184 | } | 186 | } |
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 | } | ||