feat: add spotifyd module

This commit is contained in:
Youwen Wu 2024-08-22 01:38:05 -07:00
parent f05231223b
commit 675f37c5b1
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
services.spotifyd = {
enable = true;
# settings = {global = 320;};
};
environment.systemPackages = [
pkgs.spotify-player
];
}