mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
31 lines
519 B
Nix
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;
|
|
};
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|