nix/hosts/nixos/vps/proxy.nix
2025-09-08 20:37:50 +02:00

13 lines
193 B
Nix

{ config, ... }:
{
# Traefik dynamic configuration for vps host
services.traefik.dynamicConfigOptions = {
http = {
routers = {
};
services = {
};
};
};
}