NixToSee/hostHelper.nix
Ranomier a5040dcc1b random stuff
- shell fixes
- noice function for nixos-configurations
- flake update
- random
2025-05-04 00:46:06 +02:00

9 lines
238 B
Nix

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