12 lines
200 B
Nix
12 lines
200 B
Nix
{
|
|
programs.mpv = {
|
|
enable = true;
|
|
|
|
# https://github.com/mpv-player/mpv/blob/master/etc/input.conf
|
|
bindings = {
|
|
"DOWN" = "add volume -5";
|
|
"UP" = "add volume 5";
|
|
};
|
|
};
|
|
}
|