nixos-combined-flake/modules/home-manager/mpd/ncmpcpp.nix

23 lines
414 B
Nix

{lib,config,...}: lib.mkIf config.programs.ncmpcpp.enable {
programs.ncmpcpp = {
bindings = [
{
key = "j";
command = "scroll_down";
}
{
key = "k";
command = "scroll_up";
}
{
key = "J";
command = ["select_item" "scroll_down"];
}
{
key = "K";
command = ["select_item" "scroll_up"];
}
];
};
}