nix/nixos/common/modules/secureboot.nix

10 lines
325 B
Nix
Raw Normal View History

2023-07-12 16:43:21 +02:00
{ lib, config, pkgs, ...}: {
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 ];
}