19 lines
260 B
Nix
19 lines
260 B
Nix
{
|
|
nixpkgs,
|
|
lib,
|
|
inputs,
|
|
}:
|
|
{
|
|
mkHost = name: arch: {
|
|
nixpkgs.lib.nixosSystem = {
|
|
system = arch;
|
|
modules = [
|
|
./hosts/${name}.nix
|
|
./nixosModules
|
|
];
|
|
specialArgs = {
|
|
inherit inputs;
|
|
};
|
|
};
|
|
};
|
|
}
|