nix/moduler/common/spotifyd.nix
2024-04-24 14:52:47 +02:00

11 lines
203 B
Nix

{ pkgs, lib, myhostname, sops, ... }:
{
services.spotifyd = {
enable = true;
settings = {
username = "fredzyw";
password = sops.secrets.spotify_password;
device_name = myhostname;
};
};
}