nixos-config/user/mpv.nix
Leonardo Eugênio d49fd32f9b mpv: use pulse audio output
this helps with discord audio sharing
2026-06-20 02:48:33 -03:00

30 lines
671 B
Nix

{ pkgs, ... }:
{
config = {
programs.mpv = {
enable = true;
config = {
# ytdl-format='best';
# ytdl_path = "yt-dlp";
ytdl-format = "bestvideo[height<=1080][vcodec!=vp9]+bestaudio/best";
ytdl-raw-options = "cookies=~/.cache/cookies-youtube-com.txt,mark-watched=";
osd-fractions = true;
save-position-on-quit = true;
keep-open = true;
cache = true;
cache-pause-initial = true;
cache-pause-wait = 10;
hwdec = "auto";
ao = "pulse,";
};
scripts = with pkgs.mpvScripts; [
mpris
sponsorblock
thumbfast
];
};
};
}