mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-23 00:40:33 +01:00
21 lines
320 B
Nix
21 lines
320 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
services.spotifyd.enable = true;
|
||
|
services.spotifyd.settings.global = {
|
||
|
bitrate = 320;
|
||
|
username = "xqtc@tutanota.com";
|
||
|
password_cmd = "cat /etc/spotifyd_pw";
|
||
|
};
|
||
|
|
||
|
sops.secrets = {
|
||
|
"spotify/password" = {
|
||
|
path = "/etc/spotifyd_pw";
|
||
|
};
|
||
|
};
|
||
|
}
|