nix-config/modules/fedi/default.nix
2025-02-06 21:56:43 +01:00

11 lines
191 B
Nix

{ lib, config, ... }: let
inherit (lib) mkIf;
inherit (config) conf;
in mkIf conf.fedi.enable {
services.akkoma = {
enable = true;
nginx = {
onlySSL = true;
};
};
}