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

11 lines
295 B
Nix
Raw Normal View History

2024-08-28 15:58:06 +02:00
{ ... }:
2024-08-13 19:56:30 +02:00
{
boot.loader.systemd-boot.enable = true;
2024-08-30 22:09:33 +02:00
boot.loader.systemd-boot.consoleMode = "max";
2024-08-13 19:56:30 +02:00
boot.loader.efi.canTouchEfiVariables = true;
boot.plymouth.enable = true;
boot.plymouth.theme = "bgrt";
boot.consoleLogLevel = 0;
boot.kernelParams = [ "quiet" "udev.log_level=0" ];
}