renamed us_ny.nix to locale.nix

This commit is contained in:
Your Name
2024-04-08 09:37:37 -04:00
committed by Richie Cahill
parent 2d3fe4be6e
commit 95851ee2fa
3 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
{
time.timeZone = "America/New_York";
console.keyMap = "us";
i18n = {
defaultLocale = "en_US.utf8";
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
};
}