nixos-configs/pkgs/dracula/wallpaper.nix
matt1432 87d99ffbb2
All checks were successful
Discord / discord commits (push) Has been skipped
fix(wpaperd): pin commit to working version
2024-06-22 20:37:03 -04:00

20 lines
356 B
Nix

{
fetchurl,
stdenv,
...
}:
stdenv.mkDerivation {
name = "dracula-wallpaper.png";
src = fetchurl {
url = "https://raw.githubusercontent.com/aynp/dracula-wallpapers/main/Art/4k/Waves%201.png";
hash = "sha256-f9FwSOSvqTeDj4bOjYUQ6TM+/carCD9o5dhg/MnP/lk=";
};
phases = ["installPhase"];
installPhase = ''
cp -a $src $out
'';
}