diff options
author | lassulus <lass@lassul.us> | 2017-05-19 00:24:52 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-05-19 00:24:52 +0200 |
commit | 9bf2dbdef9d922e47bfeee87ba8d88ff96920a83 (patch) | |
tree | 59e30bda1340e44f602d6e0282eb8813de7045f9 | |
parent | 07e04dad60c4fbe15f96e3260194528267ad10a6 (diff) |
lib/types: add managed bool to host type
-rw-r--r-- | lib/types.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix index 30de5e1..530cd1e 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -31,6 +31,13 @@ rec { default = null; }; + managed = mkOption { + description = '' + If true, then the host's configuration is defined in stockholm. + ''; + type = bool; + }; + owner = mkOption { type = user; }; |