22 lines
363 B
Nix
22 lines
363 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.spotifyd = {
|
|
enable = true;
|
|
package = pkgs.spotifyd.override {withMpris = true;};
|
|
settings = {
|
|
global = {
|
|
username = "me@danielpatterson.dev";
|
|
password_cmd = "cat /run/agenix/spotify_pass";
|
|
|
|
initial_volume = "70";
|
|
|
|
device_type = "computer";
|
|
};
|
|
};
|
|
};
|
|
}
|