feat(spotifyd): add spotifyd

This commit is contained in:
Mohammad Rafiq 2025-04-04 23:31:59 +08:00
parent 0bc109c6a9
commit 873611b155
No known key found for this signature in database
4 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,13 @@
{ hostname, ... }:
{
home-manager.users.rafiq.services.spotifyd = {
enable = true;
settings = {
global = {
device_name = "${hostname}";
device_type = "computer";
zeroconf_port = 5353;
};
};
};
}