diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-13 13:22:29 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-13 13:22:29 -0800 |
commit | a41c08b3487813435b0f8740870e62e9bea7dff9 (patch) | |
tree | 0177b60209bca1d40f5659f7b253a7fbb30fbc5b | |
parent | gpg: set default key (diff) | |
download | world-a41c08b3487813435b0f8740870e62e9bea7dff9.tar.gz |
home-manager: install yt-dlp
-rw-r--r-- | users/fcuny/cli/default.nix | 1 | ||||
-rw-r--r-- | users/fcuny/cli/yt-dlp.nix | 9 | ||||
l--------- | users/fcuny/configs/yt-dlp | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/cli/default.nix b/users/fcuny/cli/default.nix index ff2b89f..a3a62e2 100644 --- a/users/fcuny/cli/default.nix +++ b/users/fcuny/cli/default.nix @@ -5,6 +5,7 @@ ./git.nix ./go.nix ./tmux.nix + ./yt-dlp.nix ./zsh.nix ]; diff --git a/users/fcuny/cli/yt-dlp.nix b/users/fcuny/cli/yt-dlp.nix new file mode 100644 index 0000000..8e9cd9c --- /dev/null +++ b/users/fcuny/cli/yt-dlp.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + xdg.configFile."yt-dlp/config".source = ../configs/yt-dlp/config; + + home.packages = with pkgs; [ + unstable.yt-dlp + ]; +} diff --git a/users/fcuny/configs/yt-dlp b/users/fcuny/configs/yt-dlp new file mode 120000 index 0000000..df49e30 --- /dev/null +++ b/users/fcuny/configs/yt-dlp @@ -0,0 +1 @@ +/home/fcuny/workspace/linux-desktop/config/yt-dlp \ No newline at end of file |