11 lines
205 B
Nix
11 lines
205 B
Nix
{pkgs, ...}: {
|
|
programs.mpv = {
|
|
enable = true;
|
|
config = {
|
|
slang= "eng";
|
|
alang= "eng";
|
|
};
|
|
defaultProfiles = [ "gpu-hq" ];
|
|
scripts = with pkgs.mpvScripts; [ mpris ];
|
|
};
|
|
}
|