Add nb_NO locale. Set LC_TIME to nb_NO
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m20s
Periodic flake update / flake-update (push) Successful in 1m28s

This commit is contained in:
Torjus Håkestad 2025-03-08 03:34:57 +01:00
parent 053bd6f6a7
commit c1ccf3485e
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./git.nix
./greetd.nix
./libvirt.nix
./locale.nix
./podman.nix
./security.nix
./services.nix

12
system/locale.nix Normal file
View File

@ -0,0 +1,12 @@
{ ... }:
{
i18n = {
supportedLocales = [
"en_US.UTF-8/UTF-8"
"nb_NO.UTF-8/UTF-8"
];
extraLocaleSettings = {
LC_TIME = "nb_NO.UTF-8";
};
};
}