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