Actual
Some checks failed
/ check (push) Failing after 3m19s

This commit is contained in:
Daniel Flanagan 2024-09-12 23:45:03 -05:00
parent 8bb7b4cac2
commit b72c71a272
2 changed files with 33 additions and 0 deletions

View file

@ -1644,6 +1644,38 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
extraConfig = ''reverse_proxy :${toString config.services.grafana.settings.server.http_port}'';
};
}
{
# TODO: paperless-ngx
}
{
systemd.tmpfiles.settings = {
"10-actual" = {
"/storage/actual" = {
"d" = {
mode = "0750";
user = "root";
group = "family";
};
};
};
};
services.restic.commonPaths = [
"/storage/grafana"
];
virtualisation.oci-containers = {
containers.actual = {
image = "docker.io/actualbudget/actual-server:latest";
autoStart = true;
ports = ["5006:5006"];
volumes = ["/storage/actual:/data"];
};
};
services.caddy.virtualHosts."finances.h.lyte.dev" = {
extraConfig = ''reverse_proxy :5006'';
};
}
];
/*

View file

@ -59,6 +59,7 @@
"atuin.h.lyte.dev"
"grafana.h.lyte.dev"
"prometheus.h.lyte.dev"
"finances.h.lyte.dev"
"nextcloud.h.lyte.dev"
"onlyoffice.h.lyte.dev"
"a.lyte.dev"