diff options
author | lassulus <lassulus@lassul.us> | 2019-01-16 11:17:20 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-01-16 11:17:20 +0100 |
commit | 879b6d319a18dce6e5f686c997643c78229469a8 (patch) | |
tree | c21b0eef944b80adecb7d95aa79ba4a475ef6dd1 /krebs | |
parent | a1d9c22bbd8eff9198f378e9007ddf4cb9ee2e5c (diff) | |
parent | 2d2ab95f0707209c4c248d43cb57877a50a37991 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/per-user.nix | 2 | ||||
-rw-r--r-- | krebs/3modules/tinc.nix | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/krebs/3modules/per-user.nix b/krebs/3modules/per-user.nix index a7a07a8e6..5beb859aa 100644 --- a/krebs/3modules/per-user.nix +++ b/krebs/3modules/per-user.nix @@ -13,7 +13,7 @@ in { }); default = {}; }; - config = { + config = mkIf (cfg != {}) { environment = { etc = mapAttrs' diff --git a/krebs/3modules/tinc.nix b/krebs/3modules/tinc.nix index ecd449b09..24eac7158 100644 --- a/krebs/3modules/tinc.nix +++ b/krebs/3modules/tinc.nix @@ -27,6 +27,7 @@ let "tinc.conf" = pkgs.writeText "${netname}-tinc.conf" '' Name = ${tinc.config.host.name} Interface = ${netname} + Broadcast = no ${concatMapStrings (c: "ConnectTo = ${c}\n") tinc.config.connectTo} PrivateKeyFile = ${tinc.config.privkey.path} Port = ${toString tinc.config.host.nets.${netname}.tinc.port} |