This commit is contained in:
Lucy Hochkamp 2024-09-11 17:40:29 +02:00
parent f6342a6c30
commit 29cbe09ba0
No known key found for this signature in database
2 changed files with 20 additions and 0 deletions

View file

@ -155,4 +155,16 @@ in
];
};
virtualisation.oci-containers.containers.grafana = {
image = "grafana/grafana-oss:latest";
extraOptions = [ "--network=podman" ];
volumes = [
"grafana-data:/var/lib/grafana"
];
environment = {
GF_SERVER_ROOT_URL = "https://grafana.hailsatan.eu/";
GF_INSTALL_PLUGINS = "";
};
};
}