nixos/modules/server/fedi/akkoma.nix

66 lines
1.8 KiB
Nix
Raw Normal View History

2025-01-02 12:27:19 +04:00
{ config, lib, ... }:
with lib;
let cfg = config.void.server.fedi.akkoma;
in {
options.void.server.fedi.akkoma = { enable = mkEnableOption false; };
# :(
config = mkIf cfg.enable {
2025-01-02 14:47:50 +04:00
security.acme.certs = {
"social.sako.lol" = { };
"media.social.sako.lol" = { };
};
2025-01-02 12:27:19 +04:00
services = {
akkoma = {
enable = true;
package = pkgs.akkoma;
2025-01-02 14:47:50 +04:00
frontends = {
primary = {
package = pkgs.akkoma-frontends.akkoma-fe;
name = "akkoma-fe";
ref = "stable";
};
admin = {
package = pkgs.akkoma-frontends.admin-fe;
name = "admin-fe";
ref = "stable";
};
};
nginx = {
enableACME = true;
forceSSL = true;
2025-01-02 14:48:49 +04:00
# recommendedTlsSettings = true;
# recommendedOptimisation = true;
# recommendedGzipSettings = true;
2025-01-02 14:47:50 +04:00
};
config = {
":pleroma" = {
":instance" = {
name = "v0id";
description = "Good ass fediverse instance";
email = "sako@sako.lol";
registration_open = false;
invites_enabled = true;
account_activation_required = false;
cleanup_attachments = true;
allow_relay = true;
};
":media_proxy".enabled = false;
"Pleroma.Web.Endpoint" = { url.host = "social.sako.lol"; };
"Pleroma.Upload" = {
base_url = "https://media.social.sako.lol";
filters = map (pkgs.formats.elixirConf { }).lib.mkRaw [
"Pleroma.Upload.Filter.Exiftool"
"Pleroma.Upload.Filter.Dedupe"
"Pleroma.Upload.Filter.AnonymizeFilename"
];
};
};
};
2025-01-02 12:27:19 +04:00
};
};
};
}