From 4e68d2cd2616dd280495876ea5d5acce2a2fa95f Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Tue, 2 Jun 2026 10:33:50 +0000 Subject: [PATCH] Update flake.nix --- flake.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) 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"; - }; }) ]; };