home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 6b91b2bfcb091241e8066c973e5494b7a7bbc5bb
parent 7237ab4d7b10d29534ac3e54a572498fd88f775b
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 29 Aug 2022 14:44:00 +0200

systems: prepare disabling tlp

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/hardware/thinkpad-x1g9.nix | 1+
Msystems/modules/hardware/laptop.nix | 2++
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/systems/hardware/thinkpad-x1g9.nix b/systems/hardware/thinkpad-x1g9.nix @@ -36,6 +36,7 @@ hardware.bolt.enable = true; # throttled.enable = true; # might not be needed tlp = { + # FIXME: to disable enable = true; settings = { # Charge threshold diff --git a/systems/modules/hardware/laptop.nix b/systems/modules/hardware/laptop.nix @@ -36,9 +36,11 @@ in }; } (mkIf config.modules.desktop.enable { + # FIXME to enable # Graphical interface, we can add additionnal packages # Enable setting power-profiles trough DBus # services.power-profiles-daemon.enable = true; + # services.auto-cpufreq.enable = true; }) ]); }