NixOS-Config/modules/home/programs/terminal/ncmpcpp/default.nix

23 lines
458 B
Nix
Raw Normal View History

2024-10-18 19:49:25 -04:00
{ pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
2024-08-24 22:16:51 -04:00
programs.ncmpcpp = {
enable = true;
settings = {
browser_sort_mode = "name";
user_interface = "alternative";
};
2024-10-25 21:09:54 -04:00
bindings = [
{ key = "h"; command = "volume_down"; }
{ key = "j"; command = "scroll_down"; }
{ key = "k"; command = "scroll_up"; }
{ key = "l"; command = "volume_up"; }
];
2024-08-24 22:16:51 -04:00
};
services.mpd-discord-rpc.enable = true;
home.packages = with pkgs; [
mpc-cli
];
}