From 42ee8e753984de09fbac0a87a240056ce3e1e0ef Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Fri, 8 Apr 2022 21:13:15 +0200 Subject: [PATCH] [Laptop] Enable nohz for laptops by default --- laptop.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/laptop.nix b/laptop.nix index 2f292a5..9c642df 100644 --- a/laptop.nix +++ b/laptop.nix @@ -27,6 +27,10 @@ in { aviallon.boot.cmdline = { "i915.enable_fbc" = 1; "i915.enable_gvt" = 1; + + # Les power consumption against some performance + "workqueue.power_efficient" = ""; + nohz = "on"; }; services.tlp.enable = (cfg.power-manager == "tlp");