aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/cli/yt-dlp.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 13:22:29 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 13:22:29 -0800
commita41c08b3487813435b0f8740870e62e9bea7dff9 (patch)
tree0177b60209bca1d40f5659f7b253a7fbb30fbc5b /users/fcuny/cli/yt-dlp.nix
parentgpg: set default key (diff)
downloadinfra-a41c08b3487813435b0f8740870e62e9bea7dff9.tar.gz
home-manager: install yt-dlp
Diffstat (limited to '')
-rw-r--r--users/fcuny/cli/yt-dlp.nix9
1 files changed, 9 insertions, 0 deletions
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
+ ];
+}