summaryrefslogtreecommitdiff
path: root/hosts/common/locale.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-23 15:44:04 -0500
committerseth <[email protected]>2023-01-23 16:06:56 -0500
commit79b1d22cc9eb3752ae798d5ca9e6eeefeb86799e (patch)
tree4efdc7145ab3d13632ff956b8a6aa187bcbd568e /hosts/common/locale.nix
parent9075aa13405b4d390bfe50cde83938c9a3af0fa8 (diff)
chore: general cleanup + use `with` less
Diffstat (limited to 'hosts/common/locale.nix')
-rw-r--r--hosts/common/locale.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/common/locale.nix b/hosts/common/locale.nix
new file mode 100644
index 0000000..2699b3b
--- /dev/null
+++ b/hosts/common/locale.nix
@@ -0,0 +1,13 @@
+{config, ...}: {
+ i18n = {
+ defaultLocale = "en_US.UTF-8";
+ extraLocaleSettings = {
+ LC_MESSAGES = "en_US.UTF-8";
+ LC_TIME = "en_US.UTF-8";
+ };
+ };
+
+ time = {
+ timeZone = "America/New_York";
+ };
+}