11 lines
205 B
Nix
11 lines
205 B
Nix
{ pkgs, lib, myhostname, sops, ... }:
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings = {
|
|
username = "fredzyw";
|
|
# password = sops.secrets.spotify_password;
|
|
device_name = myhostname;
|
|
};
|
|
};
|
|
}
|