add some more to system tray

also begin work on home-manager/music.nix
This commit is contained in:
Gabriella Bere 2025-05-24 07:35:58 +01:00
parent a86371252b
commit 047e87eb37
3 changed files with 24 additions and 35 deletions

9
home-manager/music.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
services.mopidy = {
enable = true;
extensionPackages = [ pkgs.mopidy-jellyfin ];
}
programs.rmpc = {
enable = true;
};
}