variables: Add locale

This commit is contained in:
Donovan Glover 2023-06-06 08:14:52 -04:00
parent c59387bb1f
commit 41571e4354
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 4 additions and 2 deletions

View File

@ -16,8 +16,8 @@ in {
]; ];
# locale # locale
i18n.defaultLocale = "ja_JP.UTF-8"; i18n.defaultLocale = VARIABLES.defaultLocale;
i18n.supportedLocales = ["ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8"]; i18n.supportedLocales = VARIABLES.supportedLocales;
# nix # nix
nix.package = pkgs.nixFlakes; nix.package = pkgs.nixFlakes;

View File

@ -4,4 +4,6 @@
timezone = "America/New_York"; timezone = "America/New_York";
hostHardwareConfiguration = ../hosts/laptop.nix; hostHardwareConfiguration = ../hosts/laptop.nix;
stateVersion = "22.11"; stateVersion = "22.11";
defaultLocale = "ja_JP.UTF-8";
supportedLocales = ["ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8"];
} }