Files
nixos/modules/system/plymouth/default.nix
2025-05-24 21:15:39 +08:00

15 lines
400 B
Nix

inputs:
{
config.boot.plymouth =
{
# TODO: race condition, try enable it at next release
enable = false;
theme = "mac-style";
themePackages = [((inputs.pkgs.callPackage inputs.topInputs.mac-style {}).overrideAttrs (prev:
{
installPhase = prev.installPhase
+ ''cp ${./nix-doge.png} $out/share/plymouth/themes/mac-style/images/header-image.png'';
}))];
};
}