From 8479fc55eb0646bcf65b0ed8c982fd23bf6cb9b5 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 25 Aug 2025 10:39:56 -0400 Subject: [PATCH] use tuned instead of tlp or ppd --- etcnixos/common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etcnixos/common.nix b/etcnixos/common.nix index 5a43016..100a219 100644 --- a/etcnixos/common.nix +++ b/etcnixos/common.nix @@ -20,6 +20,11 @@ inputs.lanzaboote.nixosModules.lanzaboote ]; + # use tuned instead of tlp or ppd + services.power-profiles-daemon.enable = false; + services.tlp.enable = false; + services.tuned.enable = true; + nixpkgs.config.allowUnfree = true; # allow overclocking (I actually underclock but lol)