Files
nixos-conf/home/packages/spotifyd/spotifyd.nix
2025-09-29 14:55:34 -06:00

12 lines
158 B
Nix

{config, pkgs, ...}:
{
services.spotifyd = {
enable = true;
settings = {
global = {
device_name = "yukigekko";
};
};
};
}