14 lines
166 B
Nix
14 lines
166 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.mpv = {
|
||
|
enable = true;
|
||
|
scripts = with pkgs.mpvScripts; [
|
||
|
uosc
|
||
|
mpris
|
||
|
thumbnail
|
||
|
sponsorblock
|
||
|
];
|
||
|
};
|
||
|
}
|