summaryrefslogtreecommitdiffstats
path: root/4lib
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-24 18:36:16 +0200
committertv <tv@shackspace.de>2015-07-24 18:36:16 +0200
commitf10523afd37c07a3c3cec55f68a100c176b5b20f (patch)
tree2c473c4914396f26c1d7f58df56f9fbbbd05fd32 /4lib
parentf1ebbc73395e733e222b7f51e3fb554579ec1916 (diff)
4 krebs.types.host: add option: secure
Diffstat (limited to '4lib')
-rw-r--r--4lib/krebs/types.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/4lib/krebs/types.nix b/4lib/krebs/types.nix
index 38ed8a91..9d02c779 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
+ '';
+ };
};
};