nichts/modules/services/spotifyd.mod.nix

18 lines
243 B
Nix
Raw Normal View History

2025-07-13 22:51:22 +02:00
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (config.modules.system) isGraphical;
in {
# TODO: setup
services.spotifyd = mkIf isGraphical {
enable = true;
settings = {
};
config = {
};
};
}