common/irqbalance: move to own nix file

This commit is contained in:
Oystein Kristoffer Tveit 2024-12-03 13:30:24 +01:00
parent 020bc31713
commit 67f156c3b2
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 5 additions and 2 deletions

View File

@ -14,6 +14,7 @@ in {
./programs/wireshark.nix ./programs/wireshark.nix
./services/dbus.nix ./services/dbus.nix
./services/irqbalance.nix
./services/journald.nix ./services/journald.nix
./services/openssh.nix ./services/openssh.nix
./services/pcscd.nix ./services/pcscd.nix
@ -136,8 +137,6 @@ in {
enable = !config.machineVars.headless; enable = !config.machineVars.headless;
touchpad.disableWhileTyping = true; touchpad.disableWhileTyping = true;
}; };
irqbalance.enable = true;
}; };
programs = { programs = {

View File

@ -0,0 +1,4 @@
{ ... }:
{
services.irqbalance.enable = true;
}