summaryrefslogtreecommitdiffstats
path: root/mb/3modules
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-11-27 09:53:41 +0100
committertv <tv@krebsco.de>2019-11-27 09:53:41 +0100
commit16a023af18eddaaa603ef40a42a0f2a247814446 (patch)
tree6f3ebd85c2bff1036dfa8fde04a7ffd8142076db /mb/3modules
parentdc75a54cfb8b431e9ea43be6dc7207fd77f54c2f (diff)
parentaa341e428a489133061a3e898ed6a93a5c290b54 (diff)
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'mb/3modules')
-rw-r--r--mb/3modules/default.nix6
-rw-r--r--mb/3modules/hosts.nix12
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;
- };
-}