summaryrefslogtreecommitdiff
path: root/modules/datetime.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-29 20:54:34 -0700
committerFuwn <[email protected]>2024-08-29 20:54:34 -0700
commit6ddc25d4e189c30431703f602653b8bae861e4af (patch)
tree979cc4d790c3ce8895471d008d61c3e9645acec4 /modules/datetime.nix
parentfirewall (diff)
downloadnixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.tar.xz
nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.zip
some stuff
Diffstat (limited to 'modules/datetime.nix')
-rw-r--r--modules/datetime.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/datetime.nix b/modules/datetime.nix
new file mode 100644
index 0000000..2e4fbe0
--- /dev/null
+++ b/modules/datetime.nix
@@ -0,0 +1,26 @@
+{ pkgs, ... }:
+{
+ time.timeZone = "America/Los_Angeles";
+
+ i18n = {
+ defaultLocale = "en_US.UTF-8";
+
+ inputMethod = {
+ enabled = "fcitx5";
+
+ fcitx5 = {
+ waylandFrontend = true;
+
+ addons = with pkgs; [
+ fcitx5-configtool
+ fcitx5-gtk
+ fcitx5-hangul
+ fcitx5-mozc
+ fcitx5-rime
+ rime-data
+ catppuccin-fcitx5
+ ];
+ };
+ };
+ };
+}