diff options
Diffstat (limited to 'custom')
-rw-r--r-- | custom/tinc/laeradhr.nix | 7 | ||||
-rw-r--r-- | custom/tinc/yggdrasil.nix | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/custom/tinc/laeradhr.nix b/custom/tinc/laeradhr.nix index cf1b196d..7db4bec8 100644 --- a/custom/tinc/laeradhr.nix +++ b/custom/tinc/laeradhr.nix | |||
@@ -1,6 +1,9 @@ | |||
1 | { config, pkgs, name, ip, ... }: | 1 | { config, pkgs, ... }: |
2 | 2 | ||
3 | { | 3 | let |
4 | name = "unknown"; | ||
5 | ip = "xxx.xxx.xxx.xxx"; | ||
6 | in { | ||
4 | config.services.tinc = { | 7 | config.services.tinc = { |
5 | networks = { | 8 | networks = { |
6 | "laeradhr" = { | 9 | "laeradhr" = { |
diff --git a/custom/tinc/yggdrasil.nix b/custom/tinc/yggdrasil.nix index 1d642840..54f47281 100644 --- a/custom/tinc/yggdrasil.nix +++ b/custom/tinc/yggdrasil.nix | |||
@@ -1,6 +1,9 @@ | |||
1 | { config, pkgs, name, ip, ... }: | 1 | { config, pkgs, ... }: |
2 | 2 | ||
3 | { | 3 | let |
4 | name = "unknown"; | ||
5 | ip = "xxx.xxx.xxx.xxx"; | ||
6 | in { | ||
4 | config.services.tinc = { | 7 | config.services.tinc = { |
5 | networks = { | 8 | networks = { |
6 | "yggdrasil" = { | 9 | "yggdrasil" = { |