mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
19 lines
577 B
Nix
19 lines
577 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 = 5;
|
|
boot.initrd.verbose = false;
|
|
boot.initrd.enable = true;
|
|
boot.initrd.systemd.enable = true;
|
|
boot.plymouth.enable = false;
|
|
#boot.plymouth.theme = "bgrt";
|
|
#boot.initrd.luks.devices."cryptroot" = {
|
|
#device = "/dev/disk/by-label/luks";
|
|
#crypttabExtraOpts = [ "tpm2-device=auto" ];
|
|
#};
|
|
};
|
|
}
|