17 lines
242 B
Nix
17 lines
242 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.mpv = {
|
|
enable = true;
|
|
scripts = with pkgs.mpvScripts; [
|
|
mpris
|
|
sponsorblock
|
|
thumbnail
|
|
];
|
|
config = {
|
|
volume = 55;
|
|
loop-playlist = "inf";
|
|
osc = "no";
|
|
};
|
|
};
|
|
}
|