From d6126501babd9782be4248b2840da493241c30d3 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 16 Sep 2025 15:53:28 +0200 Subject: [PATCH] Disable NMI watchdog in fox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné --- m/fox/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/fox/configuration.nix b/m/fox/configuration.nix index 85af5181..cce4fbe8 100644 --- a/m/fox/configuration.nix +++ b/m/fox/configuration.nix @@ -38,6 +38,9 @@ # Expose kernel addresses boot.kernel.sysctl."kernel.kptr_restrict" = 0; + # Disable NMI watchdog to save one hw counter (for AMD uProf) + boot.kernel.sysctl."kernel.nmi_watchdog" = 0; + services.openssh.settings.X11Forwarding = true; services.fail2ban.enable = true;