snowflake/hosts/yuki/services/dashdot.nix

15 lines
296 B
Nix
Raw Normal View History

{...}: {
virtualisation.oci-containers.containers.dashdot = {
2023-06-16 02:22:36 -04:00
image = "mauricenino/dashdot:sha-207b2df";
ports = [
"4000:3001"
];
volumes = [
"/home/notoh/docker/dashdot:/mnt/host:ro"
];
environment = {
DASHDOT_ENABLE_CPU_TEMPS = "true";
};
};
}