aboutsummaryrefslogtreecommitdiffstats
path: root/nixos/locale.nix
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2024-10-07 11:47:06 +0300
committergramanas <anastasis.gramm2@gmail.com>2024-10-07 11:47:06 +0300
commit4547e75868cba2a265b78661ddc386b5e81c1bb0 (patch)
tree71924feb573c8af5030080fc007eee7bfbaabb20 /nixos/locale.nix
downloadnix-master.tar.gz
nix-master.tar.bz2
nix-master.zip
Diffstat (limited to 'nixos/locale.nix')
-rw-r--r--nixos/locale.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/locale.nix b/nixos/locale.nix
new file mode 100644
index 0000000..a4a429f
--- /dev/null
+++ b/nixos/locale.nix
@@ -0,0 +1,12 @@
+{pkgs, ...}: {
+ time.timeZone = "Europe/Athens";
+
+ i18n = {
+ defaultLocale = "en_US.UTF-8";
+
+ # inputMethod = {
+ # enable = true;
+ # type = "fcitx5";
+ # };
+ };
+}