about summary refs log tree commit diff
path: root/packages/smart-wallpaper
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2022-07-15 11:43:46 +0200
committerBaitinq <[email protected]>2022-07-15 11:43:46 +0200
commit519f13e76bee2295c75fd328015b4be8d8039cd7 (patch)
treeac4030bcb5524d08bfb1154b54cf0ea03c56a778 /packages/smart-wallpaper
parentLuna: Change disk layout (diff)
downloadnixos-config-519f13e76bee2295c75fd328015b4be8d8039cd7.tar.gz
nixos-config-519f13e76bee2295c75fd328015b4be8d8039cd7.tar.bz2
nixos-config-519f13e76bee2295c75fd328015b4be8d8039cd7.zip
Remove unneeded packages
This packages can be either used through , or were completely
unnecessary.

This allows us to free space for the luna host.
Diffstat (limited to 'packages/smart-wallpaper')
-rw-r--r--packages/smart-wallpaper/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/smart-wallpaper/default.nix b/packages/smart-wallpaper/default.nix
index f862175..14895af 100644
--- a/packages/smart-wallpaper/default.nix
+++ b/packages/smart-wallpaper/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, bash, xdpyinfo, killall }:
+{ stdenv, lib, fetchFromGitHub, makeWrapper, bash, xdpyinfo, killall, xwinwrap }:
 stdenv.mkDerivation {
   pname = "smart-wallpaper";
   version = "1.0";
@@ -14,6 +14,6 @@ stdenv.mkDerivation {
     mkdir -p $out/bin
     cp smart-wallpaper $out/bin/smart-wallpaper  
     wrapProgram $out/bin/smart-wallpaper \
-      --prefix PATH : ${lib.makeBinPath [ bash xdpyinfo killall ]}
+      --prefix PATH : ${lib.makeBinPath [ bash xdpyinfo killall xwinwrap ]}
   '';
 }