diff options
author | Martin Fischer <martin@push-f.com> | 2025-09-18 06:00:38 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-09-20 14:40:47 +0200 |
commit | 21fdce7d65f46c9935f0bf1b9475c8bcd28abf47 (patch) | |
tree | 8dd216ddf95eac6b7e780bcce0ddf5e7ae06267b /nixos/hosts/tente/ports.nix | |
parent | 70b3abe0d6a5e7cf46a8109dce05edcaca892f79 (diff) |
feat: generate web index for private web UIs
Diffstat (limited to 'nixos/hosts/tente/ports.nix')
-rw-r--r-- | nixos/hosts/tente/ports.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/nixos/hosts/tente/ports.nix b/nixos/hosts/tente/ports.nix index 3a2b2fe..133d0f7 100644 --- a/nixos/hosts/tente/ports.nix +++ b/nixos/hosts/tente/ports.nix @@ -1,4 +1,4 @@ -{ +rec { grafana = 3000; grafanaAlloy = 3001; grafanaLoki = 3030; @@ -8,4 +8,12 @@ prometheus = 9090; prometheusNodeExporter = 9002; prometheusSqlExporter = 9003; + + webUis = { + inherit + grafana + grafanaAlloy + prometheus + ; + }; } |