fix: various small things

This commit is contained in:
Moritz Böhme 2024-04-22 09:35:04 +02:00
parent 7ddd60e36c
commit 05e7391cb4
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
3 changed files with 9 additions and 3 deletions

View file

@ -8,7 +8,14 @@ let
script = pkgs.writeShellApplication {
name = "wallpaper";
runtimeInputs = with pkgs; [ findutils coreutils feh swaybg fzf viu ];
runtimeInputs = with pkgs; [
findutils
coreutils
feh
swaybg
fzf
(viu.override { withSixel = true; })
];
text = builtins.readFile ./wallpaper.sh;
};
in