🎧 The official command-line interface for Rocksky — a modern, decentralized music tracking and discovery platform built on the AT Protocol.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix

Signed-off-by: oppiliappan <me@oppi.li>

+3 -1
+3 -1
flake.nix
··· 111 111 lib, 112 112 ... 113 113 }: 114 + let 115 + cfg = config.services.rocksky-scrobble-api; 116 + in 114 117 with lib; { 115 118 options = { 116 119 services.rocksky-scrobble-api = { ··· 138 141 wantedBy = ["multi-user.target"]; 139 142 140 143 serviceConfig = { 141 - ListenStream = "0.0.0.0:${toString config.services.rocksky-scrobble-api.port}"; 142 144 ExecStart = "${pkgs.rocksky-cli}/bin/rocksky-cli scrobble-api"; 143 145 Restart = "always"; 144 146 EnvironmentFile = mkIf (cfg.environmentFile != null) cfg.environmentFile;