diff --git a/modules/profiles/headless.nix b/modules/profiles/headless.nix index 08519d58e8ae..d607d6700c6e 100644 --- a/modules/profiles/headless.nix +++ b/modules/profiles/headless.nix @@ -7,4 +7,7 @@ boot.initrd.enableSplashScreen = false; services.ttyBackgrounds.enable = false; services.mingetty.ttys = [ ]; + + # Since we can't manually respond to a panic, just reboot. + boot.kernelParams = [ "panic=1" "stage1panic=1" ]; }