diff options
Diffstat (limited to 'infra/nixos/pkgs/wallpapers.nix')
-rw-r--r-- | infra/nixos/pkgs/wallpapers.nix | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/infra/nixos/pkgs/wallpapers.nix b/infra/nixos/pkgs/wallpapers.nix deleted file mode 100644 index 3a26a54fb709..000000000000 --- a/infra/nixos/pkgs/wallpapers.nix +++ /dev/null @@ -1,22 +0,0 @@ -# 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; - }; -} |