diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-07 13:01:26 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-07 13:01:26 -0700 |
commit | 3ee60e68f184aa7f605aba04f1c256fa03be83d7 (patch) | |
tree | 9b70c046e9e4da3f9afd81d3afce51074543cf4a /home | |
parent | home: misc fixes (diff) | |
download | world-3ee60e68f184aa7f605aba04f1c256fa03be83d7.tar.gz |
home: fix for yt-dlp configuration
Diffstat (limited to '')
-rw-r--r-- | home/yt-dlp/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/yt-dlp/default.nix b/home/yt-dlp/default.nix index a366f1f..4e9cdf4 100644 --- a/home/yt-dlp/default.nix +++ b/home/yt-dlp/default.nix @@ -7,6 +7,6 @@ in { config = lib.mkIf cfg.enable { home.packages = with pkgs; [ yt-dlp ]; - xdg.configFile."yt-dlp/config".source = config; + xdg.configFile."yt-dlp/config".source = ./config; }; } |