From 282f0d0115d38e7231fe8166c6104d48bb13f8c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 19 Oct 2024 16:21:34 +0200 Subject: [PATCH] feat(sysrq): enable sysrq support --- common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.nix b/common.nix index e7f2931..b165d8c 100644 --- a/common.nix +++ b/common.nix @@ -7,6 +7,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # enable sysrq support for REISUB + boot.kernel.sysctl."kernel.sysrq" = "1"; + # Enable networking networking.networkmanager.enable = true;