summaryrefslogtreecommitdiffstats
path: root/mb/3modules
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-04-28 14:54:55 +0200
committertv <tv@krebsco.de>2019-04-28 14:54:55 +0200
commit1040fa21a577128c7cb826a1e2bb57c448eb6d24 (patch)
tree2b10e15fb48e98ff819eebf0eaf4e995d53cdfed /mb/3modules
parent2124814a04c4052f73c935927931c85812421c43 (diff)
parent915e4b843790d3e71bdccea124d4832ca042e456 (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, 18 insertions, 0 deletions
diff --git a/mb/3modules/default.nix b/mb/3modules/default.nix
new file mode 100644
index 00000000..99d09d4e
--- /dev/null
+++ b/mb/3modules/default.nix
@@ -0,0 +1,6 @@
+_:
+{
+ imports = [
+ ./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 <stockholm/lib>;
+
+{
+ options.mb.hosts = mkOption {
+ type = types.attrsOf types.host;
+ default =
+ filterAttrs (_: host: host.owner.name == "mb" && host.ci)
+ config.krebs.hosts;
+ };
+}