diff options
author | EuAndreh <eu@euandre.org> | 2022-08-12 19:27:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-08-12 19:27:37 -0300 |
commit | c115c7acf19ba14afa00ee0874ae194d623a42ff (patch) | |
tree | 06c3c26b80461c44eb77bf8e41555381662945f1 | |
parent | etc/sh/rc: Load noise cancelling in system.scm (diff) | |
download | dotfiles-c115c7acf19ba14afa00ee0874ae194d623a42ff.tar.gz dotfiles-c115c7acf19ba14afa00ee0874ae194d623a42ff.tar.xz |
etc/guix/system.scm: Add pt_BR.UTF-8 locale to system
-rw-r--r-- | etc/guix/system.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index dff97aa..75d59d9 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -14,6 +14,7 @@ (gnu services xorg) (gnu system keyboard) (gnu system file-systems) + (gnu system locale) (gnu system mapped-devices) (guix gexp) (guix packages) @@ -28,6 +29,13 @@ (initrd microcode-initrd) (firmware (list linux-firmware)) (locale "fr_FR.UTF-8") + (locale-definitions + (append + (list + (locale-definition + (name "pt_BR.UTF-8") + (source "pt_BR"))) + %default-locale-definitions)) (timezone "America/Sao_Paulo") (keyboard-layout (keyboard-layout "br" #:options '("caps:swapescape" "esperanto:qwerty"))) |