checking some stuff

This commit is contained in:
twoneis 2025-02-06 21:56:43 +01:00
parent 5c1af20894
commit a9aaa9bfcf
4 changed files with 23 additions and 1 deletions

11
modules/fedi/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ lib, config, ... }: let
inherit (lib) mkIf;
inherit (config) conf;
in mkIf conf.fedi.enable {
services.akkoma = {
enable = true;
nginx = {
onlySSL = true;
};
};
}