mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-30 18:12:04 +00:00
18 lines
248 B
Nix
18 lines
248 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
services.podman.containers = {
|
|
grafana = {
|
|
image = "docker.io/grafana/grafana:latest";
|
|
autoUpdate = "registry";
|
|
ports = ["3000:3000"];
|
|
};
|
|
};
|
|
}
|