diff --git a/flake.nix b/flake.nix index 62fd2fa..98028e3 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,7 @@ ]; }; -netboot = nixpkgs.lib.nixosSystem { +netbootSystem = nixpkgs.lib.nixosSystem { inherit system; modules = [ @@ -33,18 +33,6 @@ netboot = nixpkgs.lib.nixosSystem { imports = [ (modulesPath + "/installer/netboot/netboot-minimal.nix") ]; - - # 🔥 critical: prevent ISO/live media assumptions - boot.supportedFilesystems = [ "tmpfs" "vfat" "ext4" ]; - boot.kernelParams = [ - "ip=dhcp" - ]; - - # optional but helps avoid root confusion - fileSystems."/" = { - device = "tmpfs"; - fsType = "tmpfs"; - }; }) ]; };