diff options
| author | seth <[email protected]> | 2023-12-11 13:56:31 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-11 14:01:17 -0500 |
| commit | 0aaaf2dee691080da3d927ec1f5634dd671ba079 (patch) | |
| tree | 928942710f4e38087b76240d9854d6b77d3fec33 /systems/atlas/attic.nix | |
| parent | ef70e7e565ab153ee5dc2bbe580c6442cfc5a4f5 (diff) | |
Revert "ci: use gha & attic for building/caching"
Diffstat (limited to 'systems/atlas/attic.nix')
| -rw-r--r-- | systems/atlas/attic.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/systems/atlas/attic.nix b/systems/atlas/attic.nix deleted file mode 100644 index d7d65c4..0000000 --- a/systems/atlas/attic.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ - config, - secretsDir, - ... -}: { - age.secrets.atticCreds.file = secretsDir + "/atticCreds.age"; - - services.atticd = { - enable = true; - credentialsFile = config.age.secrets.atticCreds.path; - - settings = { - listen = "[::]:5000"; - api-endpoint = "https://cache.${config.networking.domain}/"; - - compression.type = "zstd"; - - chunking = let - kb = 1024; - in { - nar-size-threshold = 64 * kb; - min-size = 16 * kb; - avg-size = 64 * kb; - max-size = 256 * kb; - }; - - storage = { - type = "s3"; - region = "us-west-4"; - bucket = "getchoo-attic"; - endpoint = "https://s3.us-west-004.backblazeb2.com"; - }; - }; - }; -} |
