mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
13 lines
308 B
Nix
13 lines
308 B
Nix
let
|
|
vars = import ../vars.nix;
|
|
in
|
|
{
|
|
virtualisation.oci-containers.containers.grafana = {
|
|
image = "grafana/grafana-enterprise:latest";
|
|
volumes = [ "${vars.media_docker_configs}/grafana:/var/lib/grafana" ];
|
|
user = "600:600";
|
|
extraOptions = [ "--network=web" ];
|
|
autoStart = true;
|
|
};
|
|
}
|