mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
3be2abb2e6
This will reduce the system closure size by about 200MB under NixOS by sharing the glibcLocales package. When home-manager is installed on Linux without the NixOS module, all glibc locales are installed, as before. Resolves: #2333
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
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$'
|
|
'';
|
|
};
|
|
};
|
|
|
|
i18n-custom-locales = { pkgs, ... }: {
|
|
config = let stub = pkgs.glibcLocalesCustom;
|
|
in {
|
|
test.stubs.glibcLocalesCustom = {
|
|
inherit (pkgs.glibcLocales) version;
|
|
outPath = null; # we need a real path for this stub
|
|
};
|
|
|
|
i18n.glibcLocales = stub;
|
|
|
|
nmt.script = ''
|
|
hmEnvFile=home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileExists $hmEnvFile
|
|
assertFileRegex $hmEnvFile 'LOCALE_ARCHIVE_.*${stub}'
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
assertFileExists $envFile
|
|
assertFileRegex $envFile 'LOCALE_ARCHIVE_.*${stub}'
|
|
'';
|
|
};
|
|
};
|
|
}
|