nix/hosts/marvin/services/dashboard.nix
2022-07-03 09:37:49 -04:00

24 lines
459 B
Nix

{
virtualisation.oci-containers.containers = {
dashy = {
image = "lissy93/dashy:latest";
ports = [
"3003:80"
];
environment = {
NODE_ENV = "production";
};
autoStart = true;
};
# flame = {
# image = "pawelmalak/flame:latest";
# ports = [
# "3003:5005"
# ];
# volumes = [
# "/var/lib/flame:/app/data"
# ];
# autoStart = true;
# };
};
}