dotfiles/modules/services/caddy.nix
2022-10-02 17:40:10 +00:00

31 lines
519 B
Nix

{ config, pkgs, lib, ... }:
let
in {
options = {
caddyRoutes = lib.mkOption {
type = lib.types.listOf lib.types.attrs;
description = "Caddy JSON routes for http servers";
};
};
config = {
services.caddy = {
enable = true;
adapter = "''"; # Required to enable JSON
configFile = pkgs.writeText "Caddyfile" (builtins.toJSON {
apps.http.servers.main = {
listen = [ ":443" ];
routes = config.caddyRoutes;
};
});
};
};
}