From 741a77417aae85da4ce37cb8dee85cca7be4a74f Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Wed, 9 Apr 2025 15:31:18 +0200 Subject: [PATCH] hardware/module.nix: enable irqbalance This makes the system responsive even under load. --- modules/system/hardware/module.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/system/hardware/module.nix b/modules/system/hardware/module.nix index da4c82d..6efca34 100644 --- a/modules/system/hardware/module.nix +++ b/modules/system/hardware/module.nix @@ -1 +1,5 @@ -_: {imports = [./bluetooth.nix ./keyboard ./graphics.nix];} +_: { + imports = [./bluetooth.nix ./keyboard ./graphics.nix]; + + services.irqbalance.enable = true; +}