liminalOS/modules/linux/spotifyd/default.nix

14 lines
200 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;
2024-11-06 01:43:39 -08:00
settings = {
global = {
bitrate = 320;
use_mpris = true;
device_type = "computer";
};
};
2024-08-22 01:38:05 -07:00
};
}