mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08: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";
|
|
};
|
|
};
|
|
};
|
|
}
|