doesn't fail check at least

This commit is contained in:
twoneis 2025-02-07 20:20:02 +01:00
parent fe0bf55df2
commit a09edd8478
2 changed files with 19 additions and 1 deletions

View file

@ -1,9 +1,24 @@
{ lib, config, ... }: let
inherit (lib) mkIf;
inherit (config) conf;
name = "mira on fedi";
description = "miras akkoma instance";
email = "akkoma@chpu.eu";
in mkIf conf.fedi.enable {
services.akkoma = {
enable = true;
config = {
":pleroma" = {
":instance" = {
name = name;
email = email;
description = description;
};
"Pleroma.Upload" = {
base_url = "https://media.fedi.twoneis.site/media";
};
};
};
nginx = {
serverName = "fedi.twoneis.site";
};