fix(iso): use lib.mkForce on image.baseName for NixOS 26.05 compatibility
Test NaxOS Module Configurations / test-modules (push) Successful in 9m38s

This commit is contained in:
Lukas Holzner
2026-09-04 13:47:11 +02:00
parent 606f0521aa
commit 4a24d86df0
+3 -2
View File
@@ -52,10 +52,11 @@
''; '';
# ISO Image identification # ISO Image identification
isoImage.isoBaseName = "naxos-installer"; image.baseName = lib.mkForce "naxos-installer";
isoImage.volumeID = "NAXOS_INSTALL"; isoImage.volumeID = lib.mkForce "NAXOS_INSTALL";
isoImage.makeEfiBootable = true; isoImage.makeEfiBootable = true;
isoImage.makeUsbBootable = true; isoImage.makeUsbBootable = true;
boot.zfs.forceImportRoot = false;
# State version # State version
system.stateVersion = "26.05"; system.stateVersion = "26.05";