liminalOS/modules/linux/spotifyd/default.nix

10 lines
161 B
Nix
Raw Normal View History

2024-08-22 01:38:05 -07:00
{pkgs, ...}: {
services.spotifyd = {
enable = true;
# settings = {global = 320;};
};
environment.systemPackages = [
pkgs.spotify-player
];
}