mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-20 14:09:51 -07:00
13 lines
200 B
Nix
13 lines
200 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings = {
|
|
global = {
|
|
bitrate = 320;
|
|
use_mpris = true;
|
|
device_type = "computer";
|
|
};
|
|
};
|
|
};
|
|
}
|