summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-07-24 18:36:16 +0200
committertv <tv@krebsco.de>2015-07-24 18:36:16 +0200
commit9a53c4bcd8ead4eeb64452f26570d45dacd0041d (patch)
treec8f509a1c9ca862822906faa6c9f8697d7525fbf
parent4165440f467e2c573ba248ae9cdcae54d1488bc5 (diff)
4 krebs.types.host: add option: secure
-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 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
+ '';
+ };
};
};