summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-08 23:23:19 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-08 23:23:19 +0200
commitbb957032ffc5352229edbbdcdb56b9dba4408f37 (patch)
tree8d6c171a49aae83dfc191e2aad1ecf55330f0bb4 /modules
parentad57da6bda1cb00ab11f78125c16daebbf0c221c (diff)
Tacitus hosts and locale
Diffstat (limited to 'modules')
-rw-r--r--modules/default.nix1
-rw-r--r--modules/locale.nix24
2 files changed, 25 insertions, 0 deletions
diff --git a/modules/default.nix b/modules/default.nix
index 406d37c..26d6ec9 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -13,6 +13,7 @@
./remote-builder.nix
./nh.nix
./motd.nix
+ ./locale.nix
];
nixpkgs.overlays = [
diff --git a/modules/locale.nix b/modules/locale.nix
new file mode 100644
index 0000000..097ebc7
--- /dev/null
+++ b/modules/locale.nix
@@ -0,0 +1,24 @@
+{ ... }:
+let
+ language_locale = "en_GB.UTF-8";
+ actual_locale = "nl_NL.UTF-8";
+ extraLocales = map (l: "${l}/UTF-8") ([ actual_locale ] ++ [ "pl_PL.UTF-8" ]);
+in
+{
+ i18n = {
+ defaultLocale = language_locale;
+ extraLocales = extraLocales;
+ extraLocaleSettings = {
+ LC_CTYPE = language_locale;
+ LC_ADDRESS = actual_locale;
+ LC_MESSAGES = language_locale;
+ LC_MONETARY = actual_locale;
+ LC_NAME = actual_locale;
+ LC_NUMERIC = actual_locale;
+ LC_PAPER = actual_locale;
+ LC_TELEPHONE = actual_locale;
+ LC_TIME = actual_locale;
+ LC_COLLATE = actual_locale;
+ };
+ };
+}