nix-config/users/tacocat/programs/ncmpcpp.nix

14 lines
332 B
Nix
Raw Normal View History

2024-03-22 03:52:03 +00:00
{...}: {
programs.ncmpcpp = {
enable = true;
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" ]; }
];
mpdMusicDir = "/data/music";
};
}