Limit livecd label to 11 characters
vfat partition labels can only be 11 characters long Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
e96bc485db
commit
d6ef65cb6a
@ -19,7 +19,7 @@ with pkgs.lib;
|
||||
# ISO naming.
|
||||
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixosVersion}-${pkgs.stdenv.system}.iso";
|
||||
|
||||
isoImage.volumeID = substring 0 32 "NIXOS_${config.system.nixosVersion}";
|
||||
isoImage.volumeID = substring 0 11 "NIXOS_${config.system.nixosVersion}";
|
||||
|
||||
# Make the installer more likely to succeed in low memory
|
||||
# environments. The kernel's overcommit heustistics bite us
|
||||
|
Loading…
Reference in New Issue
Block a user