NixToSee/hostHelper.nix
2025-04-28 17:05:06 +02:00

9 lines
204 B
Nix

inArgs: hostname: {
${hostname} = inArgs.nixpkgs.lib.nixosSystem {
specialArgs = {inherit inArgs;};
modules = [
{networking.hostName = hostname;}
(./hosts/${hostname})
];
};
}