snowflake/hosts/sakura/services/dashdot.nix

15 lines
292 B
Nix
Raw Normal View History

2023-06-23 22:26:52 -04:00
_: {
virtualisation.oci-containers.containers.dashdot = {
2023-09-01 08:51:36 -04:00
image = "mauricenino/dashdot:sha-4bef01c";
ports = [
"4000:3001"
];
volumes = [
"/home/notoh/docker/dashdot:/mnt/host:ro"
];
environment = {
DASHDOT_ENABLE_CPU_TEMPS = "true";
};
};
}