diff --git a/home.nix b/home.nix index 6c972b7..6139d94 100644 --- a/home.nix +++ b/home.nix @@ -172,7 +172,15 @@ ]; }; - programs.ncmpcpp.enable = true; + programs.ncmpcpp = { + enable = true; + bindings = [ + { key = "h"; command = "previous_column"; } + { key = "j"; command = "scroll_down"; } + { key = "k"; command = "scroll_up"; } + { key = "l"; command = "next_column"; } + ]; + }; programs.obs-studio.enable = true;