types host: add monitoring bool

This commit is contained in:
lassulus 2018-04-27 15:14:59 +02:00
parent 817efa5f9d
commit 9bd435d14c

View File

@ -50,6 +50,14 @@ rec {
default = false;
};
monitoring = mkOption {
description = ''
Whether the host should be monitored by monitoring tools like Prometheus.
'';
type = bool;
default = false;
};
owner = mkOption {
type = user;
};