35 lines
757 B
Nix
35 lines
757 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib.trivial) pipe;
|
|
inherit (lib.attrsets) filterAttrs mapAttrs';
|
|
inherit (lib.strings) removePrefix hasPrefix;
|
|
prefix = "nixos/";
|
|
hosts = config.flake.hostSpec.hosts or { };
|
|
mkSystem =
|
|
name: value:
|
|
let
|
|
hostName = removePrefix prefix name;
|
|
hostConfig = value;
|
|
in
|
|
{
|
|
name = hostName;
|
|
value = lib.nixosSystem {
|
|
specialArgs = { inherit inputs hostName hostConfig; };
|
|
modules = [
|
|
config.flake.profiles.nixos.common
|
|
(value.extraCfg or { })
|
|
] ++ (value.profiles or [ ]);
|
|
};
|
|
};
|
|
in
|
|
{
|
|
flake.nixosConfigurations = pipe hosts [
|
|
(filterAttrs (name: _: hasPrefix prefix name))
|
|
(mapAttrs' mkSystem)
|
|
];
|
|
}
|