fix: locale settings

This commit is contained in:
Kat Inskip 2022-07-25 17:43:32 -07:00
parent 74e08d6770
commit 24a2c3028d
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

20
home/shell/lc.nix Normal file
View 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;
};
}