mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 01:29:24 +08:00
15 lines
400 B
Nix
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'';
|
|
}))];
|
|
};
|
|
}
|