From f0d02fc483a1e9e46be8d8b4ed13f0d0f46bf918 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Thu, 16 Feb 2023 11:37:41 +0100 Subject: [PATCH] configuration.nix: Add boot.shell_on_fail --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 388200d..b4b42b1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -17,6 +17,8 @@ networking.hostName = "visionfive-nix"; + boot.kernelParams = [ "boot.shell_on_fail" ]; + # Enable ssh on boot services.openssh.enable = true;