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:
4
iso.nix
4
iso.nix
@@ -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 = {
|
||||||
|
|||||||
Reference in New Issue
Block a user