liminalOS/modules/linux/spotifyd/default.nix

11 lines
163 B
Nix
Raw Normal View History

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