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