1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/services/nyastodon.nix
2024-04-19 16:34:42 +02:00

16 lines
419 B
Nix

{ config, lib, pkgs, ... }: {
nixpkgs.overlays = [
(final: prev: {
nyastodon = final.callPackage ../../pkgs/nyastodon/default.nix { };
})
];
services.mastodon = {
enable = true;
enableUnixSocket = false;
package = pkgs.nyastodon;
localDomain = config.networking.fqdn;
configureNginx = true;
smtp.fromAddress = "webmaster@girldick.gay";
streamingProcesses = 16;
};
}