nixos-config/modules/home/programs/gui/mpv/default.nix

17 lines
272 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2024-08-24 22:16:51 -04:00
{
programs.mpv = {
enable = config.home.desktop.enable;
scripts = with pkgs.mpvScripts; [
mpris
sponsorblock
thumbnail
];
2024-08-24 22:16:51 -04:00
config = {
volume = 55;
loop-playlist = "inf";
osc = "no";
};
};
}