nichts/modules/services/spotifyd.mod.nix

17 lines
245 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 = {
2025-07-19 00:12:01 +02:00
backend = "pipe";
2025-07-13 22:51:22 +02:00
};
};
}