-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathdefault.nix
More file actions
54 lines (48 loc) · 1.02 KB
/
default.nix
File metadata and controls
54 lines (48 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
./../../modules/core
];
environment.systemPackages = with pkgs; [
acpi
brightnessctl
cpupower-gui
powertop
];
services = {
# thermald.enable = true;
# cpupower-gui.enable = true;
power-profiles-daemon.enable = true;
upower = {
enable = true;
percentageLow = 20;
percentageCritical = 5;
percentageAction = 3;
criticalPowerAction = "PowerOff";
};
# auto-cpufreq = {
# enable = true;
# settings = {
# battery = {
# governor = "performance";
# turbo = "auto";
# };
# charger = {
# governor = "performance";
# turbo = "auto";
# };
# };
# };
};
powerManagement.cpuFreqGovernor = "performance";
boot = {
kernelModules = ["acpi_call"];
extraModulePackages = with config.boot.kernelPackages;
[
acpi_call
cpupower
]
++ [pkgs.cpupower-gui];
};
}