diff --git a/modules/atticd/default.nix b/modules/atticd/default.nix index 6af974f..507ba59 100644 --- a/modules/atticd/default.nix +++ b/modules/atticd/default.nix @@ -5,7 +5,7 @@ settings = { listen = "0.0.0.0:8081"; allowed-hosts = [ ]; # Allow all hosts - # api-endpoint = "https://cache.aciceri.dev"; + # api-endpoint = "https://cache.staging.mlabs.city/"; soft-delete-caches = false; require-proof-of-possession = true; @@ -13,12 +13,13 @@ storage = { type = "local"; - path = "/mnt/hd/attic"; + path = "/mnt/hd/atticd"; }; - compression.type = "none"; - - garbage-collection.interval = "0 hours"; # disable garbage collection + compression = { + level = 8; + type = "zstd"; + }; chunking = { nar-size-threshold = 64 * 1024; # 64 KiB diff --git a/packages/forgejo-report-checks/forgejo-report-checks.py b/packages/forgejo-report-checks/forgejo-report-checks.py index 538399f..a66a825 100644 --- a/packages/forgejo-report-checks/forgejo-report-checks.py +++ b/packages/forgejo-report-checks/forgejo-report-checks.py @@ -26,7 +26,7 @@ for result in data['results']: context=type, description=attr, target_url="https://git.aciceri.dev", # FIXME - state="success" if success else "failure" # may be pending,success,failure,error_message + state="success" if success else "failure" # ma be pending,success,failure,error_message ) )