From 1312b582aada31c08665a7a731ef5e9181d8454c Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Sat, 30 Nov 2024 10:04:42 +0100 Subject: [PATCH] [Nix] increase daemon CPU Quota --- nix/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/nix.nix b/nix/nix.nix index d6c4f5e..9f60993 100644 --- a/nix/nix.nix +++ b/nix/nix.nix @@ -77,7 +77,7 @@ in Nice = 19; CPUSchedulingPolicy = mkForce "batch"; CPUWeight = 1; - CPUQuota = (toString (generalCfg.cpu.threads * 80)) + "%"; + CPUQuota = (toString (generalCfg.cpu.threads * 90)) + "%"; IOSchedulingClass = mkForce "idle"; IOAccounting = true; IOWeight = 1;