mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
19 lines
314 B
Nix
19 lines
314 B
Nix
{ config, ... }: {
|
|
home.language = let
|
|
ca = "en_CA.UTF-8";
|
|
dk = "en_DK.UTF-8";
|
|
in {
|
|
base = ca;
|
|
ctype = ca;
|
|
time = ca;
|
|
numeric = ca;
|
|
collate = ca;
|
|
monetary = ca;
|
|
messages = ca;
|
|
paper = ca;
|
|
name = ca;
|
|
address = ca;
|
|
telephone = ca;
|
|
measurement = ca;
|
|
};
|
|
}
|