spotifyd: remove

only throws problem and spotify apparently changed some policies
This commit is contained in:
Rouven Seifert 2024-02-17 19:12:33 +01:00
parent 5c55131b7d
commit 83e9878a0e
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 0 additions and 30 deletions

View file

@ -1,18 +0,0 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;[ spotify-tui ];
age.secrets.spotify = {
file = ../../../../secrets/rouven/spotify.age;
};
services.spotifyd = {
enable = true;
settings = {
global = {
username = "seifertrouven@gmail.com";
password_cmd = "${pkgs.coreutils}/bin/cat ${config.age.secrets.spotify.path}";
};
backend = "pulseaudio";
};
};
systemd.user.services.spotifyd.Unit.After = [ "agenix.service" ];
}