diff options
author | makefu <github@syntax-fehler.de> | 2016-02-28 01:52:40 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-02-28 01:52:40 +0100 |
commit | 6dd129a4641b6f720c4c93f16bf6c94f77e7327e (patch) | |
tree | a9f568f72c0eb1e83ca5e030c159b43b397640cc /makefu/2configs | |
parent | 217c4840d8ebc5ffff15bb3f9c679689a4139edb (diff) |
ma 2 iodined: now requires listen addres
Diffstat (limited to 'makefu/2configs')
-rw-r--r-- | makefu/2configs/iodined.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefu/2configs/iodined.nix b/makefu/2configs/iodined.nix index db8a1bfed..2e69d167c 100644 --- a/makefu/2configs/iodined.nix +++ b/makefu/2configs/iodined.nix @@ -1,4 +1,4 @@ -{ services,builtins,environment,pkgs, ... }: +{ pkgs, config, ... }: let # TODO: make this a parameter @@ -10,7 +10,7 @@ in { enable = true; domain = domain; ip = "172.16.10.1/24"; - extraConfig = "-P ${pw}"; + extraConfig = "-P ${pw} -l ${pkgs.lib.head config.krebs.build.host.nets.internet.addrs4}"; }; } |