Leo Famulari <[email protected]> writes: > Just want to confirm I'm doing your workaround properly... like this? > $ ln -s gnu/store/...-glibc-utf8-locales-2.22/lib/locale > /run/current-system/locale > $ echo $LOCPATH > > The previous line is blank, showing that $LOCPATH is unset.
I think that would leave you with a dangling symlink when that /gnu/store item gets garbage collected. (You also forgot the first slash.) The following might be preferable: guix package -p /run/current-system/profile -i glibc-locales ln -s profile/lib/locale /run/current-system/locale Don't know if there's an even better way. HTH, Taylan
