nix-da/modules/locale.nix

13 lines
173 B
Nix

{ ... }:
let
locale = "en_GB.UTF-8";
in
{
i18n = {
defaultLocale = locale;
extraLocaleSettings = {
LANGUAGE = locale;
LC_ALL = locale;
};
};
}