Files
nixcfg/users/daniel/configs/desktop/spotify/default.nix
2022-06-28 01:40:36 +01:00

22 lines
364 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 = "100";
device_type = "computer";
};
};
};
}