nix/nixos/default.nix

17 lines
266 B
Nix
Raw Normal View History

2024-01-04 17:20:02 -06:00
with builtins; (listToAttrs (map (name: {
name = name;
value = {
system = "x86_64-linux";
modules = [./${name}.nix];
};
}) [
"base"
"thablet"
"thinker"
"foxtrot"
"beefcake"
"rascal"
"musicbox"
"router"
]))