nichts/modules/services/spotifyd.mod.nix
2025-07-16 22:15:41 +02:00

17 lines
243 B
Nix

{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (config.modules.system) isGraphical;
in {
# TODO: setup
services.spotifyd = mkIf isGraphical {
enable = true;
settings = {
};
config = {
};
};
}