lib/types: add managed bool to host type

This commit is contained in:
lassulus 2017-05-19 00:24:52 +02:00
parent 1181cd4424
commit 0901d6e6f8

View File

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