4 krebs.types.host: add option: secure

This commit is contained in:
tv 2015-07-24 18:36:16 +02:00
parent f1ebbc7339
commit f10523afd3

View File

@ -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
'';
};
};
};