11 lines
122 B
Nix
11 lines
122 B
Nix
|
{
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
programs.mpv = {
|
||
|
enable = true;
|
||
|
scripts = with pkgs; [
|
||
|
mpvScripts.mpris
|
||
|
];
|
||
|
};
|
||
|
}
|