spotifyd added, TODO add spotify-player

This commit is contained in:
twoneis 2024-04-25 01:35:16 +02:00
parent f05feec766
commit b3464f8df7
2 changed files with 15 additions and 1 deletions

View file

@ -1,10 +1,22 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
spotify
image-roll
];
programs.mpv = {
enable = true;
};
services.spotifyd = {
enable = true;
package = (pkgs.spotifyd.override {withKeyring = true; });
settings = {
global = {
device_name = "desktop";
bitrate = 160;
volume_normalisation = true;
autoplay = false;
};
};
};
}