1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{inputs, ...}: {
flake = let
mkHost = name: cfg:
inputs.nixpkgs.lib.nixosSystem {
system = cfg.system;
specialArgs = cfg.profile.specialArgs;
modules =
cfg.profile.modules
++ cfg.modules
++ [
./hosts/${name}
../hosts/${name}
{
networking.hostName = name;
}
];
};
profiles = import ./profiles inputs;
hosts = import ./hosts profiles;
in {
nixosConfigurations = inputs.nixpkgs.lib.mapAttrs mkHost hosts;
};
}