nix-config/modules/mixins/mpv.nix

12 lines
228 B
Nix
Raw Normal View History

2025-04-05 09:17:15 +01:00
{
home-manager.users.opdavies.programs.mpv = {
enable = true;
# https://github.com/mpv-player/mpv/blob/master/etc/input.conf
bindings = {
"DOWN" = "add volume -5";
"UP" = "add volume 5";
};
};
}