diff options
| author | Baitinq <[email protected]> | 2022-07-15 11:43:46 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-15 11:43:46 +0200 |
| commit | 519f13e76bee2295c75fd328015b4be8d8039cd7 (patch) | |
| tree | ac4030bcb5524d08bfb1154b54cf0ea03c56a778 /packages | |
| parent | Luna: Change disk layout (diff) | |
| download | nixos-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')
| -rw-r--r-- | packages/smart-wallpaper/default.nix | 4 |
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 ]} ''; } |