diff options
| author | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
| commit | 67acfc5da20f4b348e3826788243c997990a9a3c (patch) | |
| tree | 08a1cc47f648eb001d5f8362716337c5af58d92f /modules/system/datetime | |
| parent | Bump (diff) | |
| download | nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.tar.xz nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.zip | |
Bump
Diffstat (limited to 'modules/system/datetime')
| -rw-r--r-- | modules/system/datetime/datetime.nix | 33 | ||||
| -rw-r--r-- | modules/system/datetime/default.nix | 6 | ||||
| -rw-r--r-- | modules/system/datetime/openntpd.nix | 13 |
3 files changed, 0 insertions, 52 deletions
diff --git a/modules/system/datetime/datetime.nix b/modules/system/datetime/datetime.nix deleted file mode 100644 index 7451fa2..0000000 --- a/modules/system/datetime/datetime.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ 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 - ]; - }; - }; - }; -} diff --git a/modules/system/datetime/default.nix b/modules/system/datetime/default.nix deleted file mode 100644 index 97ba4c8..0000000 --- a/modules/system/datetime/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - imports = [ - ./datetime.nix - ./openntpd.nix - ]; -} diff --git a/modules/system/datetime/openntpd.nix b/modules/system/datetime/openntpd.nix deleted file mode 100644 index ec59d5b..0000000 --- a/modules/system/datetime/openntpd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ pkgs, ... }: -{ - services.openntpd = { - enable = true; - - extraConfig = '' - listen on 127.0.0.1 - listen on ::1 - ''; - }; - - environment.systemPackages = [ pkgs.openntpd ]; -} |