From d3fe095317c7c6431925f542523539b65dfce67f Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Mon, 21 Nov 2022 14:04:04 -0500 Subject: [PATCH] nohibernate --- modules/baseline.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/baseline.nix b/modules/baseline.nix index 787313c..320f8aa 100644 --- a/modules/baseline.nix +++ b/modules/baseline.nix @@ -7,8 +7,12 @@ boot = { zfs.forceImportRoot = false; - kernelParams = [ "amdgpu.gpu_recovery=1" "panic=30" ]; initrd.availableKernelModules = [ "nvme" ]; # is this still needed? + kernelParams = [ + "amdgpu.gpu_recovery=1" + "nohibernate" + "panic=99" + ]; }; nixpkgs.config.allowUnfree = true;