17 lines
319 B
Nix
17 lines
319 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings = {
|
|
global = {
|
|
device_name = "yukigekko";
|
|
volume_controller = "volumectl";
|
|
backend = "pipe";
|
|
device_type = "computer";
|
|
use_mpris = true;
|
|
disable_discovery = true;
|
|
};
|
|
};
|
|
};
|
|
}
|