summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hel.nix')
-rw-r--r--hel.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/hel.nix b/hel.nix
index 544cd7f0..4a3b6606 100644
--- a/hel.nix
+++ b/hel.nix
@@ -12,6 +12,7 @@
12 ./users.nix 12 ./users.nix
13 ./custom/zsh.nix 13 ./custom/zsh.nix
14 ./custom/tinc/def.nix 14 ./custom/tinc/def.nix
15 ./custom/tinc/yggdrasil.nix
15 ./custom/uucp.nix 16 ./custom/uucp.nix
16 ]; 17 ];
17 18
@@ -178,14 +179,15 @@
178 ntp.enable = false; 179 ntp.enable = false;
179 timesyncd.enable = true; 180 timesyncd.enable = true;
180 181
181 customTinc.networks = ((import ./custom/tinc/yggdrasil.nix) { 182 yggdrasilTinc = {
182 inherit (pkgs) stdenv nettools openresolv; 183 enable = true;
183 connect = true; 184 connect = true;
184 name = "hel"; 185 name = "hel";
185 ipConf = { 186 interfaceConfig = {
186 ip4 = [ { address = "10.141.2.3"; prefixLength = 16; } ]; 187 ip4 = [ { address = "10.141.2.3"; prefixLength = 16; } ];
187 }; 188 };
188 }); 189 };
190
189 uucp = { 191 uucp = {
190 enable = true; 192 enable = true;
191 nodeName = "hel"; 193 nodeName = "hel";