snowflake/hosts/sakura/services/atticd.nix
notohh a38d6f9846
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
sakura: readd grafana / formatting
2023-06-19 08:19:17 -04:00

26 lines
619 B
Nix

{config, ...}: {
sops.secrets.attic-secret = {};
services.atticd = {
enable = true;
credentialsFile = config.sops.secrets.attic-secret.path;
settings = {
listen = "[::]:8100";
allowed-hosts = ["cache.notohh.dev"];
api-endpoint = "https://cache.notohh.dev";
chunking = {
nar-size-threshold = 64 * 1024; # 64 KiB
min-size = 16 * 1024; # 16 KiB
avg-size = 64 * 1024; # 64 KiB
max-size = 256 * 1024; # 256 KiB
};
garbage-collection = {
interval = "12 hours";
default-retention-period = "2 weeks";
};
};
};
}