diff options
author | tv <tv@krebsco.de> | 2015-07-24 18:36:16 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-07-24 18:36:16 +0200 |
commit | 9a53c4bcd8ead4eeb64452f26570d45dacd0041d (patch) | |
tree | c8f509a1c9ca862822906faa6c9f8697d7525fbf /4lib | |
parent | 4165440f467e2c573ba248ae9cdcae54d1488bc5 (diff) |
4 krebs.types.host: add option: secure
Diffstat (limited to '4lib')
-rw-r--r-- | 4lib/krebs/types.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/4lib/krebs/types.nix b/4lib/krebs/types.nix index 38ed8a9..9d02c77 100644 --- a/4lib/krebs/types.nix +++ b/4lib/krebs/types.nix @@ -20,6 +20,15 @@ types // rec { type = attrsOf net; apply = x: assert hasAttr "retiolum" x; x; }; + secure = mkOption { + type = bool; + default = false; + description = '' + If true, then the host is capable of keeping secret information. + + TODO define minimum requirements for secure hosts + ''; + }; }; }; |