about summary refs log tree commit diff
path: root/users/tazjin/nixos/modules/laptop.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-06-14T13·06+0000
committerclbot <clbot@tvl.fyi>2022-06-14T13·09+0000
commitdc56b365e63d8e162b504738f54e4bd91d1b067e (patch)
tree01e499016a04d826b4a446db033cf70245c4c02d /users/tazjin/nixos/modules/laptop.nix
parent055bbe3180a83f69115f5a617204f267c5f974c1 (diff)
fix(tazjin/nixos): Disable localtimed r/4237
It only sometimes works and that's not enough times.

Change-Id: I11c1bc6e5c2eec4706bd935352188ffa83057c8f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5869
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/nixos/modules/laptop.nix')
-rw-r--r--users/tazjin/nixos/modules/laptop.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/users/tazjin/nixos/modules/laptop.nix b/users/tazjin/nixos/modules/laptop.nix
index da35c787b5..e0d67dc259 100644
--- a/users/tazjin/nixos/modules/laptop.nix
+++ b/users/tazjin/nixos/modules/laptop.nix
@@ -2,10 +2,11 @@
 { ... }:
 
 {
-  # Automatically detect location for redshift & timezone settings.
+  time.timeZone = "Europe/Moscow";
+
+  # Automatically detect location for redshift & so on ...
   services.geoclue2.enable = true;
   location.provider = "geoclue2";
-  services.localtimed.enable = true;
 
   # Enable power-saving features.
   services.tlp.enable = true;