nix daemon idle scheduling

This commit is contained in:
2025-07-26 00:28:26 +02:00
parent 9f7bb06cbb
commit b4edfa07d5
2 changed files with 9 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@
system/users.nix
system/ssh.nix
system/gaming.nix
system/nix.nix
desktop/plasma.nix
desktop/touchpad.nix
+8
View File
@@ -0,0 +1,8 @@
{ config, lib, pkgs, modulesPath, ... }:
{
nix = {
daemonIOSchedClass = "idle";
daemonCPUSchedPolicy = "idle";
};
}