feat: playing around with mpd and rmpc

This commit is contained in:
Nick 2025-11-25 00:14:51 -06:00
parent c359f738ab
commit 8a06bb05fe
7 changed files with 491 additions and 33 deletions

View file

@ -0,0 +1,13 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
rmpc
;
};
xdg.configFile."rmpc/config.ron".source = ./config/config.ron;
xdg.configFile."rmpc/themes/catppuccin-macchiato.ron".source = ./config/catppuccin-macchiato.ron;
}