tvl-depot/pkgs/wallpapers.nix
Vincent Ambo 01aed568e5 feat: Update to NixOS 18.03
As the subject says ...

This only includes some minor changes in configuration. Most
interestingly several packages that I used to have in this repository
as custom packages are now available in `nixos-unstable`.

Unfortunately they weren't included in NixOS 18.03 though ...

Either way, this is cleaner.
2018-04-04 17:10:12 +02:00

22 lines
544 B
Nix

# Fetch my wallpapers from git
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "tazjins-wallpapers-1";
src = fetchgit {
url = "https://git.tazj.in/tazjin/wallpapers.git";
rev = "3bce73b605ba5f848cb4e7cc33058a2be3952c68";
sha256 = "1gjlazag7x005sf2bd6a7dw5p9ry5vjgzmvycsyiw3pv9b1gzc0j";
};
installPhase = ''
mkdir -p $out/share/wallpapers
cp -r $src/* $out/share/wallpapers
'';
meta = with stdenv.lib; {
description = "tazjin's wallpaper collection";
platforms = platforms.all;
};
}