From af8e5deb4aba11ead4d695687dade8067b2ccd6b Mon Sep 17 00:00:00 2001 From: theArctesian Date: Mon, 29 Sep 2025 19:17:03 -0700 Subject: [PATCH] Fix ISO image filename configuration syntax - Moved image.fileName to top-level (not under isoImage.image) - Fixed syntax error that prevented ISO build --- iso.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iso.nix b/iso.nix index c53a90a..d5b89e8 100644 --- a/iso.nix +++ b/iso.nix @@ -29,7 +29,6 @@ # ISO-specific configuration isoImage = { # ISO image settings - image.fileName = "omnixy-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso"; volumeID = "OMNIXY_${lib.toUpper config.system.nixos.label}"; # Boot configuration @@ -69,6 +68,9 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # ISO image filename + image.fileName = "omnixy-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso"; + # Enable flakes nix = { settings = {