diff options
author | EuAndreh <eu@euandre.org> | 2023-03-27 07:05:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-27 07:05:30 -0300 |
commit | 5e3dabdd48f2445ce29a912b8e96d7c0b22a32dd (patch) | |
tree | 60cc2d6ee5a0b4055fe52282df454311500f0958 | |
parent | etc/guix/home.scm: Add finished "abuild" package and WIP "apk-tools" package (diff) | |
download | dotfiles-5e3dabdd48f2445ce29a912b8e96d7c0b22a32dd.tar.gz dotfiles-5e3dabdd48f2445ce29a912b8e96d7c0b22a32dd.tar.xz |
etc/nix/configuration.nix: Add more locales
-rw-r--r-- | etc/nix/configuration.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 2375783..a113e70 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -43,8 +43,16 @@ }; console.keyMap = "br-abnt2"; - i18n.defaultLocale = "fr_FR.UTF-8"; time.timeZone = "America/Sao_Paulo"; + i18n = { + defaultLocale = "fr_FR.UTF-8"; + supportedLocales = [ + "C.UTF-8/UTF-8" + "en_AU.UTF-8/UTF-8" + "fr_FR.UTF-8/UTF-8" + "pt_BR.UTF-8/UTF-8" + ]; + }; programs.less.enable = lib.mkForce false; |