about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/breeze-grub.nix
blob: da0fb6f73ad7884a763f0ec18309e456bf6dfc52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  plasmaPackage
}:

plasmaPackage {
  name = "breeze-grub";
  outputs = [ "out" ];
  installPhase = ''
    runHook preInstall

    mkdir -p "$out/grub/themes"
    mv breeze "$out/grub/themes"

    runHook postInstall
  '';
}