diff options
| -rw-r--r-- | lib/types.nix | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/lib/types.nix b/lib/types.nix index f312b73..0e0e093 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -58,6 +58,14 @@ rec {          default = false;        }; +      consul = mkOption { +        description = '' +          Whether the host is a member of the global consul network +        ''; +        type = bool; +        default = false; +      }; +        owner = mkOption {          type = user;        }; | 
