pantheon/configs/programs/spotifyd.nix
2025-04-10 16:28:33 +08:00

13 lines
247 B
Nix

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