cluster/services/hercules-ci-multi-agent: enable bucket website access for nix-store

This commit is contained in:
Max Headroom 2024-07-04 22:07:09 +02:00
parent 60b18c9ccb
commit 4be09304ae

View file

@ -36,6 +36,9 @@
];
in {
keys = lib.genAttrs hciAgentKeys (lib.const {});
buckets.nix-store.allow = lib.genAttrs hciAgentKeys (lib.const [ "read" "write" ]);
buckets.nix-store = {
allow = lib.genAttrs hciAgentKeys (lib.const [ "read" "write" ]);
web.enable = true;
};
};
}