about summary refs log tree commit diff
path: root/machines/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/default.nix')
-rw-r--r--machines/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/machines/default.nix b/machines/default.nix
new file mode 100644
index 00000000..10c4fdb6
--- /dev/null
+++ b/machines/default.nix
@@ -0,0 +1,20 @@
+{ system ? builtins.currentSystem, ... }:
+
+let
+  callMachine = path: rec {
+    config = import path;
+    build = import <nixpkgs/nixos/lib/eval-config.nix> {
+      inherit system;
+      modules = [ config ];
+    };
+  };
+
+in {
+  aszlig = {
+    dnyarri   = callMachine ./aszlig/dnyarri.nix;
+    mmrnmhrm  = callMachine ./aszlig/mmrnmhrm.nix;
+    arilou    = callMachine ./aszlig/arilou.nix;
+    kzerza    = callMachine ./aszlig/kzerza.nix;
+    tishtushi = callMachine ./aszlig/tishtushi.nix;
+  };
+}