move spotify packages

This commit is contained in:
Dmitriy Kholkin 2021-10-24 23:14:54 +03:00
parent 2c18467def
commit df24c1bc3b
2 changed files with 6 additions and 3 deletions

View File

@ -43,7 +43,6 @@ with config.deviceSpecific; {
nnn nnn
procs procs
ranger ranger
spotify-tui
# gui # gui
audacity audacity
@ -59,7 +58,6 @@ with config.deviceSpecific; {
qbittorrent qbittorrent
quodlibet quodlibet
scrcpy scrcpy
spotifywm
system-config-printer system-config-printer
tdesktop tdesktop
xarchiver xarchiver

View File

@ -61,7 +61,7 @@ in {
}; };
services.spotifyd-user = { services.spotifyd-user = {
enable = true; # enable = true;
package = (pkgs.spotifyd.override { withALSA = false; withPulseAudio = true; withPortAudio = false; withMpris = true; }); package = (pkgs.spotifyd.override { withALSA = false; withPulseAudio = true; withPortAudio = false; withMpris = true; });
settings = { settings = {
global = { global = {
@ -78,6 +78,11 @@ in {
}; };
}; };
}; };
home-manager.users.alukard.home.packages = with pkgs; [
spotify-tui
spotifywm
];
} }
]; ];
} }