add ja_JP locale
This commit is contained in:
parent
fdd6c7cce0
commit
56e22e6d25
1 changed files with 14 additions and 1 deletions
|
@ -26,6 +26,7 @@
|
|||
#:use-module (gnu services avahi)
|
||||
#:use-module (gnu services spice)
|
||||
#:use-module (gnu services virtualization)
|
||||
#:use-module (gnu system locale)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (nongnu packages linux)
|
||||
#:use-module (srfi srfi-1)
|
||||
|
@ -59,6 +60,17 @@
|
|||
%base-user-accounts))
|
||||
|
||||
|
||||
(define-public %freya-locale
|
||||
(list (locale-definition
|
||||
(name "en_US.utf8")
|
||||
(source "en_US")
|
||||
(charset "UTF-8"))
|
||||
(locale-definition
|
||||
(name "ja_JP.utf8")
|
||||
(source "ja_JP")
|
||||
(charset "UTF-8"))))
|
||||
|
||||
|
||||
(define-public %freya-base-packages
|
||||
(append
|
||||
|
||||
|
@ -276,7 +288,8 @@
|
|||
(firmware (list linux-firmware
|
||||
amd-microcode
|
||||
sof-firmware))
|
||||
(locale "en_US.utf8")
|
||||
(locale "en_US.UTF-8")
|
||||
(locale-definitions %freya-locale)
|
||||
(timezone "America/New_York")
|
||||
(keyboard-layout (keyboard-layout "us"))
|
||||
(host-name "ThisWillChange")
|
||||
|
|
Loading…
Reference in a new issue