dotfiles/.config/nixos/shared/locale.nix
Andrei Jiroh Halili 18b7c4e226 chore(nixos): update configurations and add README
Also set wakatime project name for @hackclub High Seas and
for coding stats

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2024-12-29 22:16:59 +08:00

20 lines
No EOL
502 B
Nix

{ config, pkgs, lib, ... }:
{
# Set your time zone.
time.timeZone = "Asia/Manila";
# Select internationalisation properties.
i18n.defaultLocale = "en_PH.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_PH.UTF-8";
LC_IDENTIFICATION = "en_PH.UTF-8";
LC_MEASUREMENT = "en_PH.UTF-8";
LC_MONETARY = "en_PH.UTF-8";
LC_NAME = "en_PH.UTF-8";
LC_NUMERIC = "en_PH.UTF-8";
LC_PAPER = "en_PH.UTF-8";
LC_TELEPHONE = "en_PH.UTF-8";
LC_TIME = "en_PH.UTF-8";
};
}