2023-07-12 16:43:21 +02:00
|
|
|
{ lib, config, pkgs, ...}: {
|
2023-07-12 13:52:15 +02:00
|
|
|
boot.lanzaboote.enable = true;
|
|
|
|
boot.lanzaboote.pkiBundle = "/etc/secureboot";
|
2023-09-21 14:51:42 +02:00
|
|
|
|
|
|
|
# Plymouth splash screen
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
# https://github.com/adi1090x/plymouth-themes
|
|
|
|
boot.plymouth.theme = "red_loader";
|
|
|
|
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
|
2023-07-12 13:52:15 +02:00
|
|
|
}
|