1
0
Fork 0

gallery-dl: Improve installation

This commit is contained in:
Daniel Kempkens 2023-05-05 16:46:54 +02:00
parent 943cea92f2
commit 4c92e75417
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 12 additions and 1 deletions

View file

@ -18,6 +18,8 @@ args@{ pkgs, config, lib, ... }:
../programs/fzf.nix
../programs/gallery-dl.nix
../programs/gpg.nix
../programs/jq.nix
@ -50,7 +52,6 @@ args@{ pkgs, config, lib, ... }:
exiftool
fd
ffmpeg
gallery-dl
glow
hexyl
hyperfine

View file

@ -14,6 +14,8 @@ args@{ pkgs, ... }:
../programs/fzf.nix
../programs/gallery-dl.nix
../programs/jq.nix
../programs/scripts.nix

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
gallery-dl
ffmpeg
];
}