snowflake/hosts/sora/services/glances.nix

11 lines
259 B
Nix
Raw Normal View History

2024-01-25 09:04:47 -05:00
_: {
virtualisation.oci-containers.containers.glances = {
image = "nicolargo/glances";
2024-02-08 12:04:15 -05:00
ports = [ "61208-61209:61208-61209" ];
volumes = [ "/var/run/docker.sock:/var/run/docker.sock" ];
2024-01-25 09:04:47 -05:00
environment = {
GLANCES_OPT = "-w";
};
};
}