nix/nixos/common/modules/plymouth.nix

10 lines
308 B
Nix
Raw Normal View History

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