added graphical mpd client.

This commit is contained in:
Gabe Venberg 2024-04-07 18:59:34 -05:00
parent 48c6a2ceca
commit 089f7833f8
3 changed files with 11 additions and 1 deletions

View file

@ -29,6 +29,6 @@
../modules/home-manager ../modules/home-manager
../modules/home-manager/syncthing.nix ../modules/home-manager/syncthing.nix
../modules/home-manager/beets.nix ../modules/home-manager/beets.nix
../modules/home-manager/mpd.nix ../modules/home-manager/mpd/mpd.nix
]; ];
} }

View file

@ -0,0 +1,10 @@
{
config,
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
mpdevil
];
}