Update flake.nix

This commit is contained in:
2026-06-02 10:32:14 +00:00
parent bf0d980e6d
commit 655865e77a
+12
View File
@@ -33,6 +33,18 @@
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";
};
})
];
};