12 lines
158 B
Nix
12 lines
158 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings = {
|
|
global = {
|
|
device_name = "yukigekko";
|
|
};
|
|
};
|
|
};
|
|
}
|