mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
18 lines
492 B
Nix
18 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$'
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|