Files
nix-fleet/modules/base/boot/boot.nix
2026-03-03 00:43:09 +01:00

14 lines
381 B
Nix

{ ... }: {
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";
};
}