nix/nixos/common/modules/plymouth.nix

10 lines
308 B
Nix
Raw Normal View History

2023-09-22 12:45:23 +02:00
{ pkgs, config, ... }: {
# Plymouth splash screen
boot.plymouth.enable = true;
# https://github.com/adi1090x/plymouth-themes
2024-06-20 12:42:02 +02:00
boot.plymouth.theme = "sphere";
# boot.plymouth.theme = "red_loader";
2023-09-22 12:45:23 +02:00
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
2023-11-25 13:23:19 +01:00
boot.kernelParams = ["quiet"];
2024-06-20 12:42:02 +02:00
}