Files
nix-fleet/modules/base/sys/boot.nix
2026-03-03 23:06:45 +01:00

14 lines
390 B
Nix

{ ... }: {
flake.nixosModules.base-sys-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";
};
}