configuration.nix/home/programs/mpv.nix

23 lines
505 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ pkgs, ... }: {
2023-04-07 19:09:05 +05:30
programs.mpv = {
enable = true;
2023-11-04 16:12:45 +05:30
package = pkgs.mpv.override { youtubeSupport = true; };
2023-04-07 19:09:05 +05:30
config = {
2023-05-06 00:19:51 +05:30
cache = "yes";
2023-07-11 22:11:11 +05:30
cache-secs = "120";
2023-04-07 19:09:05 +05:30
hwdec = "auto-safe";
gpu-context = "wayland";
};
2023-11-04 16:12:45 +05:30
defaultProfiles = [ "gpu-hq" ];
scripts = with pkgs.mpvScripts; [ mpris ];
2023-04-07 19:09:05 +05:30
};
xdg.desktopEntries = {
"umpv" = {
name = "umpv Media Player";
exec = "umpv --player-operation-mode=pseudo-gui -- %U";
noDisplay = true;
};
};
}