forked from emily/nixfiles
11 lines
259 B
Nix
11 lines
259 B
Nix
|
{ config, lib, pkgs, ... }: {
|
||
|
services.mastodon = {
|
||
|
enable = true;
|
||
|
package = pkgs.nyastodon;
|
||
|
localDomain = config.networking.fqdn;
|
||
|
configureNginx = true;
|
||
|
smtp.fromAddress = "webmaster@girldick.gay";
|
||
|
streamingProcesses = 16;
|
||
|
};
|
||
|
}
|