nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 081b657aa90e8dfc89905f3237f75c077142719d
parent 8803c69dbc506dfa1776951882d986d01f4fc19f
Author: Peter <peter@minskio.co.uk>
Date:   Tue, 23 Dec 2025 18:11:17 +0000

yt-dlp via home-manager

Diffstat:
Mcommon/packages.nix | 1-
Ahome/yt-dlp.nix | 8++++++++
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/common/packages.nix b/common/packages.nix @@ -18,6 +18,5 @@ syncthing tmux unzip - yt-dlp ]; } diff --git a/home/yt-dlp.nix b/home/yt-dlp.nix @@ -0,0 +1,8 @@ +{ + programs.yt-dlp = { + enable = true; + extraConfig = '' + --no-playlist" + ''; + }; +}