feat(distro): rename ISO targets and fix UEFI boot in live test script

- Rename installerIso and installerIsoGraphical to nomarchy-installer and nomarchy-live.
- Update host configurations with proper Nomarchy branding and volume IDs.
- Fix nomarchy-test-live-iso QEMU launch by using -drive if=pflash for UEFI firmware.
- Add nomarchy-build-live-iso utility script.
- Scrub remaining Omarchy references in Plymouth, installer messages, and docs.
- Regenerate docs/SCRIPTS.md to reflect new and renamed utilities.
This commit is contained in:
Bernardo Magri
2026-04-26 15:29:04 +01:00
parent 21230a05eb
commit 6de8ecd093
16 changed files with 97 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ lib, ... }:
{
# Identify the distribution as Nomarchy in /etc/os-release.
@@ -8,4 +8,10 @@
distroId = "nomarchy";
distroName = "Nomarchy";
};
# Ensure the bootloader entries use Nomarchy instead of NixOS
boot.loader.grub.configurationName = lib.mkDefault "Nomarchy";
# For systemd-boot, NixOS 24.11+ uses distroName if available,
# but some older versions or specific setups might need explicit labels.
# We use mkDefault so users can still override if they want.
}