From da1ade1e6fd0c89d8b1d46edcb116d693f41fcea Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 4 Aug 2024 17:47:13 -0400 Subject: [PATCH] chore: Replace ncmpcpp with rmpc Now with album art support. --- home/{ncmpcpp.nix => rmpc.nix} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename home/{ncmpcpp.nix => rmpc.nix} (82%) diff --git a/home/ncmpcpp.nix b/home/rmpc.nix similarity index 82% rename from home/ncmpcpp.nix rename to home/rmpc.nix index 1c979701..c138c9ec 100644 --- a/home/ncmpcpp.nix +++ b/home/rmpc.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: let inherit (config.xdg.userDirs) music; @@ -6,6 +6,8 @@ let musicDirectory = music; in { + home.packages = with pkgs; [ rmpc ]; + services.mpd = { enable = true; inherit musicDirectory;