This commit is contained in:
Filippo Berto 2023-01-10 14:28:18 +01:00
parent d5b262b4fa
commit 4913d01060
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 14 additions and 14 deletions

10
hm_modules/spotifyd.nix Normal file
View file

@ -0,0 +1,10 @@
{ nixosConfig, ... }: {
services.spotifyd = {
enable = true;
settings.global = {
username = "filippoberto95";
password_cmd = "cat ${nixosConfig.age.secrets.spotify_password.path}";
backend = "pulseaudio";
};
};
}