Fix ISO image filename configuration syntax

- Moved image.fileName to top-level (not under isoImage.image)
- Fixed syntax error that prevented ISO build
This commit is contained in:
theArctesian
2025-09-29 19:17:03 -07:00
parent 820d691d48
commit af8e5deb4a

View File

@@ -29,7 +29,6 @@
# ISO-specific configuration # ISO-specific configuration
isoImage = { isoImage = {
# ISO image settings # ISO image settings
image.fileName = "omnixy-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
volumeID = "OMNIXY_${lib.toUpper config.system.nixos.label}"; volumeID = "OMNIXY_${lib.toUpper config.system.nixos.label}";
# Boot configuration # Boot configuration
@@ -69,6 +68,9 @@
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# ISO image filename
image.fileName = "omnixy-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
# Enable flakes # Enable flakes
nix = { nix = {
settings = { settings = {