snowflake/hosts/sora/services/glances.nix
notohh ef0d474c1b
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
glances: close ports
2024-01-25 09:35:23 -05:00

15 lines
279 B
Nix

_: {
virtualisation.oci-containers.containers.glances = {
image = "nicolargo/glances";
ports = [
"61208-61209:61208-61209"
];
volumes = [
"/var/run/docker.sock:/var/run/docker.sock"
];
environment = {
GLANCES_OPT = "-w";
};
};
}