From 614a598c2011a7db8f25300ec5cc6da4db06f3d9 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 13 Oct 2024 15:54:53 -0400 Subject: [PATCH] pacifidlog: set consoleMode to max --- hosts/petalburg/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/petalburg/default.nix b/hosts/petalburg/default.nix index c9f550ef..3a14fd0b 100644 --- a/hosts/petalburg/default.nix +++ b/hosts/petalburg/default.nix @@ -33,7 +33,11 @@ loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = lib.mkForce false; + + systemd-boot = { + enable = lib.mkForce false; + consoleMode = "max"; + }; }; };