10 lines
247 B
Nix
10 lines
247 B
Nix
{ nixosConfig, ... }: {
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings.global = {
|
|
username = "filippoberto95";
|
|
password_cmd = "cat ${nixosConfig.age.secrets.spotify_password.path}";
|
|
backend = "pulseaudio";
|
|
};
|
|
};
|
|
}
|