nixos-config/home/modules/spotify-cli.nix

21 lines
378 B
Nix
Raw Normal View History

2024-08-05 12:56:08 +02:00
{
config,
pkgs,
lib,
inputs,
...
}: {
services.spotifyd.enable = config.os == "linux";
2024-11-08 00:53:37 +01:00
#services.spotifyd.settings.global = {
# bitrate = 320;
# username = "xqtc@tutanota.com";
# password_cmd = "cat /etc/spotifyd_pw";
#};
2024-08-05 12:56:08 +02:00
2024-11-08 00:53:37 +01:00
#sops.secrets = lib.mkIf (config.os == "linux") {
# "spotify/password" = {
# path = "/etc/spotifyd_pw";
# };
#};
2024-08-05 12:56:08 +02:00
}