From 845efe9e8fb7ae902a291795cd5366210dea2e22 Mon Sep 17 00:00:00 2001 From: fruchti Date: Sat, 26 Aug 2023 10:52:00 +0200 Subject: [PATCH] Rupert: Try workaround for reboot issues Sometimes, shutdowns hang --- hosts/Rupert.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index 9a42cc5..f1e8896 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -19,6 +19,7 @@ in boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.kernelParams = [ "acpi=force" "reboot=bios" ]; networking.hostName = "Rupert";