diff options
author | makefu <github@syntax-fehler.de> | 2015-12-14 14:18:08 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-12-14 14:18:08 +0100 |
commit | 27ca97b78f66d6fca96e303cc650cc68065e9a1c (patch) | |
tree | 2ce7e69ae4e73013a3556b301e1edf22aa2b3d4c /krebs/3modules/retiolum.nix | |
parent | c3bd222b9f8c4b7d08a447760ae5ae28b90f217e (diff) |
k 3 retiolum: add extraConfig
Diffstat (limited to 'krebs/3modules/retiolum.nix')
-rw-r--r-- | krebs/3modules/retiolum.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/krebs/3modules/retiolum.nix b/krebs/3modules/retiolum.nix index 633642537..28ac67306 100644 --- a/krebs/3modules/retiolum.nix +++ b/krebs/3modules/retiolum.nix @@ -50,6 +50,14 @@ let ''; }; + extraConfig = mkOption { + type = types.str; + default = ""; + description = '' + Extra Configuration to be appended to tinc.conf + ''; + }; + tincPackage = mkOption { type = types.package; default = pkgs.tinc; @@ -203,6 +211,7 @@ let Interface = ${cfg.network} ${concatStrings (map (c : "ConnectTo = " + c + "\n") cfg.connectTo)} PrivateKeyFile = /tmp/retiolum-rsa_key.priv + ${cfg.extraConfig} EOF # source: krebscode/painload/retiolum/scripts/tinc_setup/tinc-up |