server-config/services/soulseek.nix

15 lines
214 B
Nix

{ pkgs, ... }:
{
services.slskd = {
enable = true;
openFirewall = true;
domain = "www.gardling.com";
settings = {
shares = {
directories = [ "/tank/music" ];
};
};
};
}