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; }; }