summaryrefslogtreecommitdiffstats
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-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}