diff options
| -rw-r--r-- | krebs/4lib/types.nix | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/krebs/4lib/types.nix b/krebs/4lib/types.nix index d057cef1d..37d44606b 100644 --- a/krebs/4lib/types.nix +++ b/krebs/4lib/types.nix @@ -134,12 +134,19 @@ types // rec {                  ++                  (map (a: "Subnet = ${a}") net.addrs)                  ++ +                [config.extraConfig] +                ++                  [config.pubkey]                );              };              pubkey = mkOption {                type = tinc-pubkey;              }; +            extraConfig = mkOption { +              description = "Extra Configuration to be appended to the hosts file"; +              default = ""; +              type = string; +            };              port = mkOption {                type = int;                description = "tinc port to use to connect to host";  | 
