mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
15 lines
267 B
Nix
15 lines
267 B
Nix
{ ... }:
|
|
{
|
|
services.grafana = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
http_port = 3000;
|
|
};
|
|
};
|
|
};
|
|
|
|
services.caddy.virtualHosts."http://grafana.sisyphe.normandy.hypervirtual.world".extraConfig = ''
|
|
reverse_proxy :3000
|
|
'';
|
|
}
|