mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 23:19:47 +01:00
i18n: only set localeVars for gnu (glibc) targets
This commit is contained in:
parent
fb5ac0c870
commit
b7b47b10ba
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
config = mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||||
config = mkIf (pkgs.stdenv.hostPlatform.isLinux && pkgs.stdenv.hostPlatform.isGnu) {
|
||||
# For shell sessions.
|
||||
home.sessionVariables = localeVars;
|
||||
|
||||
|
|
Loading…
Reference in a new issue