about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-10 14:49:09 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-10 14:49:09 +0200
commit4d963db4ed9b5fe196966d46bc607ded27931b8a (patch)
tree702f642f1e151fca7aab0cadec696dd152c5ee71 /modules
parentfix(pkgs/mpc): Update the new music handling system (diff)
downloadnixos-config-4d963db4ed9b5fe196966d46bc607ded27931b8a.tar.gz
nixos-config-4d963db4ed9b5fe196966d46bc607ded27931b8a.zip
fix(home/pkgs): Use new mpc wrappers
Diffstat (limited to 'modules')
-rw-r--r--modules/home/pkgs/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/home/pkgs/default.nix b/modules/home/pkgs/default.nix
index eb958a18..dc7c4fe2 100644
--- a/modules/home/pkgs/default.nix
+++ b/modules/home/pkgs/default.nix
@@ -132,14 +132,13 @@ with pkgs; let
 
       Listen = [
         spodi # Wrapper around `spotdl`.
-        pulseaudio # set the volume with pactl
         ncmpc # mpd player client
         mpc-cli-man # a cli mpd client (added via a wrapper script)
-        mpc # Wrapper around `mpc` that allows the usage of `mpc-{rm,fav}` without the `-`
-        mpc-rm # Removes the currently playing song from the playlist
-        mpc-fav # Adds the currently playing song to the favorites
+        mpc # Wrapper around `mpc` that allows the usage of `mpc-{rm,lyrics,searchadd}` without the `-`
+        mpc-rm # Removes the currently playing song from the disk and storage
+        mpc-searchadd # Works like normal `mpc searchadd` but uses the `beets` query syntax
         # Displays the lyrics of the currently playing song
-        (lyrics.override {
+        (mpc-lyrics.override {
           mpd_music_dir = config.services.mpd.musicDirectory;
         })
         sort_song # Sorts songs in the current directory.