machines-config/lib.nix

20 lines
260 B
Nix
Raw Normal View History

2024-12-18 11:34:20 +01:00
{
nixpkgs,
lib,
inputs,
}:
{
mkHost = name: arch: {
nixpkgs.lib.nixosSystem = {
system = arch;
modules = [
./hosts/${name}.nix
./nixosModules
];
specialArgs = {
inherit inputs;
};
};
};
}