1
0
Fork 0
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:
inmaldrerah 2023-12-22 06:03:06 +00:00 committed by GitHub
parent fb5ac0c870
commit b7b47b10ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;