nix/nixos/default.nix

21 lines
321 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";
2024-02-21 21:38:42 -06:00
specialArgs = {
};
2024-01-04 17:20:02 -06:00
modules = [./${name}.nix];
};
}) [
"base"
2024-01-24 20:25:19 -06:00
"htpc"
2024-01-04 17:20:02 -06:00
"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
]))