diff options
| author | seth <[email protected]> | 2023-07-14 21:59:17 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-14 21:59:17 -0400 |
| commit | dc74f7e340309f484a028a27d4768de45f3106aa (patch) | |
| tree | ed6748ab8b4de050f98d9772384f1b41699719f0 | |
| parent | ff5b9b8b2c76a2c5fd182c7341f29666f596afe0 (diff) | |
modules/base: don't use hardware clock
| -rw-r--r-- | modules/nixos/base/locale.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/nixos/base/locale.nix b/modules/nixos/base/locale.nix index b79d328..c4f8497 100644 --- a/modules/nixos/base/locale.nix +++ b/modules/nixos/base/locale.nix @@ -16,9 +16,6 @@ in { defaultLocale = "en_US.UTF-8"; }; - time = { - hardwareClockInLocalTime = true; - timeZone = "America/New_York"; - }; + time.timeZone = "America/New_York"; }; } |
