summaryrefslogtreecommitdiffstats
path: root/profiles/laptop.nix
blob: 56eb7c4d6a93e1c92ee220333567839b88971567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
inputs:

{ config, lib, ... }:

{
  services.tlp = {
    enable = true;
    settings = {
      CPU_SCALING_GOVERNOR_ON_AC = config.powerManagement.cpuFreqGovernor;
      CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
    };
  };

  services.automatic-timezoned.enable = true;
  # Needed to be able to change timezone
  time.timeZone = lib.mkForce null;
}