Files
nixcfg/users/daniel/configs/desktop/spotify/default.nix
2022-08-29 22:10:09 +01:00

26 lines
436 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";
backend = "pulseaudio";
volume_controller = "softvol";
device_type = "computer";
};
};
};
}