mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
17 lines
492 B
Nix
17 lines
492 B
Nix
{
|
|
i18n = { ... }: {
|
|
config = {
|
|
nmt.script = ''
|
|
hmEnvFile=home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileExists $hmEnvFile
|
|
assertFileRegex $hmEnvFile \
|
|
'^export LOCALE_ARCHIVE_._..=".*/lib/locale/locale-archive"$'
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
assertFileExists $envFile
|
|
assertFileRegex $envFile \
|
|
'^LOCALE_ARCHIVE_._..=.*/lib/locale/locale-archive$'
|
|
'';
|
|
};
|
|
};
|
|
}
|