home-manager/tests/modules/programs/mpv/mpv-example-settings.nix

47 lines
1006 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
programs.mpv = {
enable = true;
package = pkgs.mpvDummy;
bindings = {
WHEEL_UP = "seek 10";
WHEEL_DOWN = "seek -10";
"Alt+0" = "set window-scale 0.5";
};
config = {
force-window = true;
ytdl-format = "bestvideo+bestaudio";
cache-default = 4000000;
};
profiles = {
fast = { vo = "vdpau"; };
"protocol.dvd" = {
profile-desc = "profile for dvd:// streams";
alang = "en";
};
};
defaultProfiles = [ "gpu-hq" ];
};
nixpkgs.overlays = [
(self: super: { mpvDummy = pkgs.runCommandLocal "mpv" { } "mkdir $out"; })
];
nmt.script = ''
assertFileContent \
home-files/.config/mpv/mpv.conf \
${./mpv-example-settings-expected-config}
assertFileContent \
home-files/.config/mpv/input.conf \
${./mpv-example-settings-expected-bindings}
'';
};
}