From ccdc7fc2e29c2fed02c69993e568b585e0301981 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Thu, 15 Aug 2024 01:42:11 +0200 Subject: [PATCH] nixos-mods/hwCommon: disable power-profiles-daemon - seems to be default in most desktop environments --- nix/nixos-modules/hwCommon.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/nixos-modules/hwCommon.nix b/nix/nixos-modules/hwCommon.nix index 45c484b..7fe881f 100644 --- a/nix/nixos-modules/hwCommon.nix +++ b/nix/nixos-modules/hwCommon.nix @@ -112,6 +112,11 @@ in enable = true; }; + power-profiles-daemon = { + # 2024-08-14: tlp seems way better in my experience, hence disable it + enable = lib.mkIf config.services.tlp.enable false; + }; + smartd = { enable = true; };