summaryrefslogtreecommitdiffstats
path: root/lass/3modules/hosts.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-05-24 01:31:22 +0200
committertv <tv@krebsco.de>2017-05-24 01:31:22 +0200
commit46d6506916f699e3b707dc41cd68c92b98e50e5a (patch)
tree1d43d0072fc479c7022e3cd3b9810aa7b90e1db3 /lass/3modules/hosts.nix
parent061e702a6fc0e6046d39c3975c9034a69499c45f (diff)
parent90f6d9f228029233d38a86a520a0e532cc5e499f (diff)
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'lass/3modules/hosts.nix')
-rw-r--r--lass/3modules/hosts.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lass/3modules/hosts.nix b/lass/3modules/hosts.nix
index 125819bb..7e3af10b 100644
--- a/lass/3modules/hosts.nix
+++ b/lass/3modules/hosts.nix
@@ -6,7 +6,7 @@ with import <stockholm/lib>;
options.lass.hosts = mkOption {
type = types.attrsOf types.host;
default =
- filterAttrs (_: host: host.owner.name == "lass")
+ filterAttrs (_: host: host.owner.name == "lass" && host.managed)
config.krebs.hosts;
};
}