home

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

commit e523816eca6461ef5d83d76254423257d34c7cf6
parent d7ad7eb49fedfa4980d613b92ad4ab4517e069af
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 22 Aug 2022 14:42:11 +0200

systems/wakasu: enable 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, 2 insertions(+), 1 deletion(-)

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 = { + enable = true; settings = { # Charge threshold # If the battery is used somewhat frequently, diff --git a/systems/modules/hardware/laptop.nix b/systems/modules/hardware/laptop.nix @@ -38,7 +38,7 @@ in (mkIf config.modules.desktop.enable { # Graphical interface, we can add additionnal packages # Enable setting power-profiles trough DBus - services.power-profiles-daemon.enable = true; + # services.power-profiles-daemon.enable = true; }) ]); }