summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2023-02-25 11:03:59 +0100
committerMinijackson <minijackson@riseup.net>2023-02-25 11:03:59 +0100
commitb1177dc6af61fb84724321fa2fc18c3b5b610492 (patch)
tree531c71b1ad03c35991195c9fc9f9b418f8a313cb
parent644304d94f50d2810642701ebef6973a70c65a7f (diff)
downloadnixos-config-reborn-b1177dc6af61fb84724321fa2fc18c3b5b610492.tar.gz
nixos-config-reborn-b1177dc6af61fb84724321fa2fc18c3b5b610492.zip
laptop: add automatic-timezoned
-rw-r--r--profiles/laptop.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/profiles/laptop.nix b/profiles/laptop.nix
index f6c24a9..56eb7c4 100644
--- a/profiles/laptop.nix
+++ b/profiles/laptop.nix
@@ -1,6 +1,6 @@
1inputs: 1inputs:
2 2
3{ config, ... }: 3{ config, lib, ... }:
4 4
5{ 5{
6 services.tlp = { 6 services.tlp = {
@@ -10,4 +10,8 @@ inputs:
10 CPU_SCALING_GOVERNOR_ON_BAT = "powersave"; 10 CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
11 }; 11 };
12 }; 12 };
13
14 services.automatic-timezoned.enable = true;
15 # Needed to be able to change timezone
16 time.timeZone = lib.mkForce null;
13} 17}