From 89e1c5dc9a54c0518c023722405ca614f20f71a7 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Thu, 30 Jul 2026 17:36:00 +1000 Subject: [PATCH] Fix netbootMinimalSystem: set stateVersion and forceImportRoot --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 31a26e1..27f6833 100644 --- a/flake.nix +++ b/flake.nix @@ -200,7 +200,11 @@ (modulesPath + "/installer/netboot/netboot-minimal.nix") ]; }) - { networking.hostName = "nixos-minimal"; } + { + networking.hostName = "nixos-minimal"; + system.stateVersion = "26.05"; + boot.zfs.forceImportRoot = false; + } ]; };