nix-config/home/programs/media/spotify/spotifyd.nix

13 lines
206 B
Nix
Raw Normal View History

2025-04-16 21:54:10 +02:00
{ pkgs, ...}:
{
services.spotifyd = {
enable = true;
settings = {
global = {
username = "";
password = "";
};
};
};
}