NixOS-Config/modules/system/services/server/social/pixelfed/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ pkgs, config, ... }:
2024-10-09 03:36:08 -04:00
{
2024-09-09 17:07:24 -04:00
services.pixelfed = {
enable = true;
domain = "pics.${config.domains.jim1}";
secretFile = pkgs.writeText "appkey" config.secrets.pixelfedKey;
2024-09-11 15:57:29 -04:00
settings = {
2024-09-11 21:58:40 -04:00
APP_NAME = ''"Jimbo's Pixelfed"'';
2024-09-11 15:57:29 -04:00
INSTANCE_DESCRIPTION = ''"The Jimbosfiles Pixelfed Instance"'';
INSTANCE_CONTACT_EMAIL = "jimbo@${config.domains.jim1}";
2024-09-11 15:57:29 -04:00
OPEN_REGISTRATION = true;
APP_LOCALE = "en";
INSTANCE_DISCOVER_PUBLIC = false;
STORIES_ENABLED = true;
# Mail config
ENFORCE_EMAIL_VERIFICATION = true;
MAIL_FROM_ADDRESS = "noreply@${config.domains.jim1}";
MAIL_FROM_NAME = ''"Jimbo's Pixelfed <noreply@${config.domains.jim1}>"'';
2024-09-11 15:57:29 -04:00
MAIL_ENCRYPTION = "tls";
MAIL_DRIVER = "smtp";
MAIL_HOST = "mx.${config.domains.jim1}";
2024-09-11 15:57:29 -04:00
MAIL_PORT = 587;
MAIL_USERNAME = "noreply@${config.domains.jim1}";
MAIL_PASSWORD = "${config.secrets.noreplyPassword}";
2024-09-11 15:57:29 -04:00
};
nginx = {
enableACME = true;
forceSSL = true;
};
2024-09-09 17:07:24 -04:00
};
}