nix/nixos/default.nix

18 lines
279 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"
"beefcake"
2024-01-06 11:43:30 -06:00
"dragon"
"foxtrot"
2024-01-04 17:20:02 -06:00
"musicbox"
2024-01-06 11:43:30 -06:00
"rascal"
2024-01-04 17:20:02 -06:00
"router"
2024-01-06 11:43:30 -06:00
"thablet"
"thinker"
2024-01-04 17:20:02 -06:00
]))