diff options
author | tv <tv@krebsco.de> | 2023-01-19 15:38:56 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-19 15:40:04 +0100 |
commit | cb796ce05b00bbdc3fc6d4109483f1bd257cc147 (patch) | |
tree | a044cbb6bb8e7e14b01f496d5674f68ed7d35b07 /krebs | |
parent | be9e03264d1ec0ec8e7b75f940e6415e1f84c34e (diff) |
tinc: remove parentheses of fear
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/tinc.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/krebs/3modules/tinc.nix b/krebs/3modules/tinc.nix index f6727e4d4..7154ecdc3 100644 --- a/krebs/3modules/tinc.nix +++ b/krebs/3modules/tinc.nix @@ -128,9 +128,9 @@ with import <stockholm/lib>; default = pkgs.write "${tinc.config.netname}-tinc-hosts" (mapAttrs' - (_: host: (nameValuePair "/${host.name}" { + (_: host: nameValuePair "/${host.name}" { text = host.nets.${tinc.config.netname}.tinc.config; - })) + }) tinc.config.hosts); defaultText = "‹netname›-tinc-hosts"; description = '' |