diff options
Diffstat (limited to '')
-rw-r--r-- | modules/home/pkgs/default.nix | 9 |
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. |