nichts/modules/services/spotifyd.mod.nix

16 lines
245 B
Nix

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