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: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 10 additions and 1 deletions

View file

@ -69,7 +69,7 @@
apple-silicon,
...
} @ inputs: let
in rec {
in {
formatter = with nixpkgs.legacyPackages; {
x86_64-linux = x86_64-linux.alejandra;
aarch64-linux = aarch64-linux.alejandra;

View file

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