mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
14 lines
390 B
Nix
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";
|
|
};
|
|
}
|