flakes/modules/sites/maych-in.nix
Chinmay D. Pai 3647ebdd26
feat: add maych-in to trench
Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-12-01 23:09:13 +05:30

13 lines
216 B
Nix

{pkgs, ...}: {
services.nginx = {
virtualHosts = {
"maych.in" = {
serverName = "maych.in";
enableACME = true;
forceSSL = true;
root = pkgs.maych-in;
};
};
};
}