nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix
2022-03-06 22:28:59 +01:00

16 lines
203 B
Nix

{
mkDerivation
}:
mkDerivation {
pname = "breeze-grub";
installPhase = ''
runHook preInstall
mkdir -p "$out/grub/themes"
mv breeze "$out/grub/themes"
runHook postInstall
'';
}