Files
nix-dotfiles/home/programs/mpv.nix
2025-03-24 11:12:11 +01:00

17 lines
415 B
Nix

{ config, lib, machineVars, ... }:
{
programs.mpv = {
enable = !machineVars.headless;
config = {
screenshot-directory = "${config.xdg.userDirs.pictures}/mpv-screenshots";
#https://wiki.nixos.org/wiki/Accelerated_Video_Playback
hwdec = "auto-safe";
vo = "gpu";
profile = "gpu-hq";
gpu-context = lib.mkIf machineVars.wayland "wayland";
};
};
}