aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/programs/ncmpcpp.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/.flake/home/programs/ncmpcpp.nix')
-rw-r--r--nixos/.flake/home/programs/ncmpcpp.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/nixos/.flake/home/programs/ncmpcpp.nix b/nixos/.flake/home/programs/ncmpcpp.nix
deleted file mode 100644
index f9ab2b9..0000000
--- a/nixos/.flake/home/programs/ncmpcpp.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- programs.ncmpcpp = {
- enable = true;
- bindings = [
- { key = "j"; command = "scroll_down"; }
- { key = "k"; command = "scroll_up"; }
- { key = "h"; command = "previous_column"; }
- { key = "l"; command = "next_column"; }
- { key = "g"; command = "move_home"; }
- { key = "G"; command = "move_end"; }
- { key = "n"; command = "next_found_item"; }
- { key = "N"; command = "previous_found_item"; }
- ];
- mpdMusicDir = "~/Music";
- settings = {
- ncmpcpp_directory = "~/.config/nmcpcpp";
- mpd_host = "localhost";
- mpd_port = "6600";
- };
- };
-}