diff options
author | nin <nin@c-base.org> | 2018-05-02 15:13:40 +0200 |
---|---|---|
committer | nin <nin@c-base.org> | 2018-05-02 15:13:40 +0200 |
commit | e7645e76c9db8f5436bd0e1c143c40186e7adcf0 (patch) | |
tree | de7d471a46993e410762fe9eb6514b9cefe31371 /lib | |
parent | d50f14be0c8bc161118745d544aca63d43e5ebac (diff) | |
parent | b1982d73e145eec0833328c125c0b88b1dda1229 (diff) |
Merge branch 'master' of prism:stockholm
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix index 1cf2d96..d663d25 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -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; }; |