nixos-configs/pkgs/dracula/wallpaper.nix

20 lines
353 B
Nix
Raw Normal View History

{
2024-06-13 22:27:54 -04:00
fetchurl,
stdenv,
...
}:
stdenv.mkDerivation {
2024-06-13 23:46:34 -04:00
name = "dracula-wallpaper.png";
2024-06-13 22:27:54 -04:00
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 $src $out
'';
}