From d5c580daa1c1fd878dad9f08ea699bc531791a08 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 19 Apr 2019 16:14:53 +0200 Subject: init mb --- mb/3modules/hosts.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mb/3modules/hosts.nix (limited to 'mb/3modules/hosts.nix') diff --git a/mb/3modules/hosts.nix b/mb/3modules/hosts.nix new file mode 100644 index 00000000..5dc9b5ca --- /dev/null +++ b/mb/3modules/hosts.nix @@ -0,0 +1,12 @@ +{ config, ... }: + +with import ; + +{ + options.mb.hosts = mkOption { + type = types.attrsOf types.host; + default = + filterAttrs (_: host: host.owner.name == "mb" && host.ci) + config.krebs.hosts; + }; +} -- cgit v1.2.3