about summary refs log tree commit diff
path: root/packages
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-15 11:43:46 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-15 11:43:46 +0200
commiteec9a235c6a4955158c2cf689316a052f169c1b0 (patch)
tree0217a174a9fb9edecd6e168abc65f45f58aa8e21 /packages
parentLuna: Change disk layout (diff)
downloadnixos-config-eec9a235c6a4955158c2cf689316a052f169c1b0.tar.gz
nixos-config-eec9a235c6a4955158c2cf689316a052f169c1b0.tar.bz2
nixos-config-eec9a235c6a4955158c2cf689316a052f169c1b0.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')
-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 ]}
   '';
 }