liminalOS/modules/linux/spotifyd/default.nix

13 lines
200 B
Nix

{ pkgs, ... }:
{
services.spotifyd = {
enable = true;
settings = {
global = {
bitrate = 320;
use_mpris = true;
device_type = "computer";
};
};
};
}