10 lines
153 B
Nix
10 lines
153 B
Nix
{ pkgs, lib, myhostname, ... }:
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings = {
|
|
username = "fredzyw";
|
|
device_name = myhostname;
|
|
};
|
|
};
|
|
}
|