From e6c5cd5ead5e88f52b8b65f635fe319bacd335c1 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Fri, 24 Oct 2025 12:25:31 +0200 Subject: [PATCH] trying to get boot resolution full screen --- system-modules/boot.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/system-modules/boot.nix b/system-modules/boot.nix index b99e5b1..cca0ff9 100644 --- a/system-modules/boot.nix +++ b/system-modules/boot.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }@all: with all; -let +{ pkgs, ... }@all: with all; let grub-theme-ascii-diana = (pkgs.fetchFromGitea { domain = "git.${hyper.domain}"; owner = "nx2"; @@ -9,6 +8,10 @@ let }); device-boot = if hyper.host == "NxNORTH" then { kernelPackages = pkgs.linuxPackages_zen; + kernelParams = [ + "fbcon=margin:1" + "fbcon=nodefer" + ]; lanzaboote = { enable = true; pkiBundle = "/var/lib/sbctl"; @@ -62,8 +65,6 @@ in { ] else []; config = { environment.systemPackages = with pkgs; lib.mkIf ( host == "NxNORTH" ) [ sbctl ]; - boot ={ - tmp.useTmpfs = false; - } // device-boot; + boot = { tmp.useTmpfs = false; } // device-boot; }; }