dotfiles/nix/modules/home-manager/mpv.nix

12 lines
200 B
Nix
Raw Normal View History

2024-05-31 15:30:35 +00:00
{
programs.mpv = {
enable = true;
# https://github.com/mpv-player/mpv/blob/master/etc/input.conf
bindings = {
"DOWN" = "add volume -5";
"UP" = "add volume 5";
};
2024-05-31 15:30:35 +00:00
};
}