This commit is contained in:
2026-03-03 00:43:09 +01:00
parent 8310bb525e
commit 42529d4176

View File

@@ -0,0 +1,13 @@
{ ... }: {
flake.nixosModules.boot = {
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.consoleMode = "max";
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 1;
boot.consoleLogLevel = 0;
boot.initrd.verbose = false;
boot.initrd.enable = true;
boot.plymouth.enable = true;
boot.plymouth.theme = "bgrt";
};
}