diff options
Diffstat (limited to 'hosts/bean/default.nix')
-rw-r--r-- | hosts/bean/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/hosts/bean/default.nix b/hosts/bean/default.nix new file mode 100644 index 0000000..41ade5d --- /dev/null +++ b/hosts/bean/default.nix @@ -0,0 +1,33 @@ +{ mkHost, hosts, inputs }: + +let + inherit (inputs) nixpkgs; + inherit (nixpkgs.lib.attrsets) + mergeAttrsList; +in +mergeAttrsList + ((map (h: mkHost "x86_64-linux" h + [ ./common.nix + ./users.nix ]) + [ + "anasazi" + "bolita" + "calypso" + "kidney" + "peruano" + "pink" + "sulphur" + "white" + ]) + ++ + (map (h: mkHost "x86_64-linux" h + [ ./common.nix + ./users.nix + ./${h}.nix ]) + [ + "pinto" + ])) +// mkHost "x86_64-linux" "sprout" [ + ./common.nix + ./iso.nix +] |