snowflake/hosts/sakura/services/dashdot.nix
2023-06-23 22:26:52 -04:00

15 lines
292 B
Nix

_: {
virtualisation.oci-containers.containers.dashdot = {
image = "mauricenino/dashdot:sha-207b2df";
ports = [
"4000:3001"
];
volumes = [
"/home/notoh/docker/dashdot:/mnt/host:ro"
];
environment = {
DASHDOT_ENABLE_CPU_TEMPS = "true";
};
};
}