Create custom iso

This commit is contained in:
SebastianStork 2024-08-16 21:38:40 +02:00
parent b2351be830
commit a4fca57ff7
6 changed files with 82 additions and 1 deletions

View file

@ -19,5 +19,12 @@ in
inherit specialArgs;
modules = modulesOf "inspiron";
};
installer = inputs.nixpkgs.lib.nixosSystem {
inherit specialArgs;
modules = [
{ networking.hostName = "installer"; }
"${self}/hosts/installer"
];
};
};
}