From 3f05a965e2329593f36e08f8ca5c3e885d1f2f46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Thu, 13 Feb 2025 19:22:18 +0100 Subject: [PATCH] Enable crash dump for media1 --- hosts/media1/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/media1/configuration.nix b/hosts/media1/configuration.nix index 63b2ec5..4a14b0d 100644 --- a/hosts/media1/configuration.nix +++ b/hosts/media1/configuration.nix @@ -19,6 +19,9 @@ configurationLimit = 5; memtest86.enable = true; }; + crashDump = { + enable = true; + }; loader.efi.canTouchEfiVariables = true; supportedFilesystems = [ "nfs" ]; kernelPackages = pkgs.linuxPackages_latest; @@ -26,6 +29,8 @@ "quiet" "splash" "rd.systemd.show_status=false" + "oops=panic" + "panic=0" ]; };