add mpv youtube et twitch

This commit is contained in:
afoucaultc 2026-08-09 21:25:04 +02:00
parent 481556c7ac
commit 35b0a52424
12 changed files with 650 additions and 19 deletions

View file

@ -1,6 +1,32 @@
{ ... }:
{ pkgs, ... }:
{
home.packages = with pkgs; [
yt-dlp
streamlink
curl
];
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
uosc
thumbfast
sponsorblock
];
config = {
osc = false;
border = false;
ytdl-format = "bestvideo[height<=?1080]+bestaudio/best";
save-position-on-quit = true;
};
scriptOpts.feeds = {
youtube_csv = "~/nixos-config/dotfiles/mpv/youtube.csv";
twitch_csv = "~/nixos-config/dotfiles/mpv/twitch.csv";
key = "ctrl+h";
# twitch_live_check = "no";
};
};
# destination = relative à ~/.config ; source = ./feeds.lua dans ton dépôt
xdg.configFile."mpv/scripts/feeds.lua".source = ../../../dotfiles/mpv/feeds.lua;
}