Remove spotifyd and fixes

This commit is contained in:
2023-02-04 23:54:58 +00:00
parent d5d653c88b
commit 44c91f48d2
7 changed files with 3 additions and 59 deletions

View File

@@ -3,7 +3,6 @@
# ./i3
# ./i3status-rust
# ./polybar
./spotify
./rofi
];

View File

@@ -1,25 +0,0 @@
{
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";
};
};
};
}