diff options
author | tv <tv@krebsco.de> | 2019-11-27 09:53:41 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-11-27 09:53:41 +0100 |
commit | 16a023af18eddaaa603ef40a42a0f2a247814446 (patch) | |
tree | 6f3ebd85c2bff1036dfa8fde04a7ffd8142076db /mb/3modules | |
parent | dc75a54cfb8b431e9ea43be6dc7207fd77f54c2f (diff) | |
parent | aa341e428a489133061a3e898ed6a93a5c290b54 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'mb/3modules')
-rw-r--r-- | mb/3modules/default.nix | 6 | ||||
-rw-r--r-- | mb/3modules/hosts.nix | 12 |
2 files changed, 0 insertions, 18 deletions
diff --git a/mb/3modules/default.nix b/mb/3modules/default.nix deleted file mode 100644 index 99d09d4ec..000000000 --- a/mb/3modules/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -_: -{ - imports = [ - ./hosts.nix - ]; -} diff --git a/mb/3modules/hosts.nix b/mb/3modules/hosts.nix deleted file mode 100644 index 5dc9b5ca4..000000000 --- a/mb/3modules/hosts.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, ... }: - -with import <stockholm/lib>; - -{ - options.mb.hosts = mkOption { - type = types.attrsOf types.host; - default = - filterAttrs (_: host: host.owner.name == "mb" && host.ci) - config.krebs.hosts; - }; -} |