nixos-config/hosts/vault-tec/services.nix
gwg313 701051522a
feat: add panopticon(attic cache server)
Signed-off-by: gwg313 <gwg313@pm.me>

attic client

Signed-off-by: gwg313 <gwg313@pm.me>
2025-07-09 08:08:39 -04:00

15 lines
257 B
Nix

{
services.traefik = {
dynamicConfigOptions = {
http = {
services = {
attic_local.loadBalancer.servers = [
{
url = "http://127.0.0.1:8080";
}
];
};
};
};
};
}