nix/nixos/common/modules/plymouth.nix
2024-06-20 19:42:02 +09:00

9 lines
308 B
Nix

{ pkgs, config, ... }: {
# Plymouth splash screen
boot.plymouth.enable = true;
# https://github.com/adi1090x/plymouth-themes
boot.plymouth.theme = "sphere";
# boot.plymouth.theme = "red_loader";
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
boot.kernelParams = ["quiet"];
}