11 lines
191 B
Nix
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;
|
|
};
|
|
};
|
|
}
|