Files
dotfiles/nixos/tako/services/attic.nix
servius 21e779c304
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
fix: Macos fixes
2026-02-11 16:30:38 +05:30

18 lines
327 B
Nix

{...}: {
services = {
atticd = {
enable = true;
listen = "/run/attic/attic.sock";
};
caddy = {
virtualHosts."cache.darksailor.dev".extraConfig = ''
reverse_proxy /run/attic/attic.sock {
transport http {
protocol = "fd"
}
}
'';
};
};
}