diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-29 22:45:16 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-29 22:45:16 -0500 |
commit | c8d2fe1d29ecee26f8a0e0ba00fccb587d520fd0 (patch) | |
tree | 2a413b975258c20c6044031b2317a88e32dcccd3 /hosts | |
parent | 8e10c6b53c3acda15b6091fc8487dd7960d51e28 (diff) | |
download | nixos-config-c8d2fe1d29ecee26f8a0e0ba00fccb587d520fd0.tar.gz nixos-config-c8d2fe1d29ecee26f8a0e0ba00fccb587d520fd0.zip |
hosts/ades/live: Make boot menu label more descriptive
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/ades/iso.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/ades/iso.nix b/hosts/ades/iso.nix index 63c48d9..79db210 100644 --- a/hosts/ades/iso.nix +++ b/hosts/ades/iso.nix @@ -22,7 +22,6 @@ let in rec { imports = [ - (modulesPath + "/profiles/all-hardware.nix") (modulesPath + "/installer/cd-dvd/iso-image.nix") ]; @@ -32,6 +31,9 @@ rec { makeUsbBootable = true; isoBaseName = lib.mkImageMediaOverride "nixos-styx"; + + prependToMenuLabel = "Ades ("; + appendToMenuLabel = ") Live System"; }; swapDevices = lib.mkImageMediaOverride []; |