nixos/services/traefik/adguardhome.nix
Evie Litherland-Smith a1c28e779a Clean up and add services
Remove jupyter service and qbittorrent traefik route

Add ntfy-sh (enabled) and initial grafana (not enabled) expressions

Change services to call own traefik expression, rather than needing to
be called explicitly
2023-10-21 17:55:11 +01:00

16 lines
415 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./default.nix ];
services.traefik.dynamicConfigOptions.http = {
routers.adguard = {
rule = "Host(`guard.xenia.me.uk`)";
entryPoints = [ "http" "https" ];
service = "adguard-webinterface";
tls = { certResolver = "default"; };
};
services.adguard-webinterface.loadBalancer.servers =
[{ url = "http://localhost:3001"; }];
};
}