summaryrefslogtreecommitdiff
path: root/modules/system/datetime/datetime.nix
blob: 7451fa276645e855cf39dd6b3129e306b93c4ac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ pkgs, ... }:
{
  time.timeZone = "America/Los_Angeles";
  location.provider = "geoclue2";

  services = {
    chrony.enable = false;
    timesyncd.enable = true;
  };

  i18n = {
    defaultLocale = "en_US.UTF-8";

    inputMethod = {
      enable = true;
      type = "fcitx5";

      fcitx5 = {
        waylandFrontend = true;

        addons = with pkgs; [
          fcitx5-configtool
          fcitx5-gtk
          fcitx5-hangul
          fcitx5-mozc
          fcitx5-rime
          rime-data
          catppuccin-fcitx5
        ];
      };
    };
  };
}