diff options
Diffstat (limited to 'nixos/locale.nix')
-rw-r--r-- | nixos/locale.nix | 12 |
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"; + # }; + }; +} |