mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
fix: locale settings
This commit is contained in:
parent
74e08d6770
commit
24a2c3028d
1 changed files with 20 additions and 0 deletions
20
home/shell/lc.nix
Normal file
20
home/shell/lc.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, ... }: {
|
||||
home.language = let
|
||||
ca = "en_CA.UTF-8";
|
||||
gb = "en_GB.UTF-8";
|
||||
dk = "en_DK.UTF-8";
|
||||
in {
|
||||
base = ca;
|
||||
ctype = ca;
|
||||
time = dk;
|
||||
numeric = ca;
|
||||
collate = ca;
|
||||
monetary = ca;
|
||||
messages = ca;
|
||||
paper = gb;
|
||||
name = gb;
|
||||
address = ca;
|
||||
telephone = ca;
|
||||
measurement = ca;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue