nixos-config/modules/system/boot/default.nix

15 lines
359 B
Nix
Raw Normal View History

2024-08-13 19:56:30 +02:00
{ ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.plymouth.enable = true;
boot.plymouth.theme = "bgrt";
boot.consoleLogLevel = 0;
boot.kernelParams = [ "quiet" "udev.log_level=0" ];
boot.initrd.verbose = false;
2024-08-27 17:21:21 +02:00
boot.lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
2024-08-13 19:56:30 +02:00
}