fix(staging-hydra): add hydra-www to allowed users
Simon Hauser committed
Aug 5, 2025 at 09:02 UTC
285a23798587915fd6bb4de661722d69a6120d7a
1 file changed
+5
-2
non-critical-infra/hosts/staging-hydra/hydra.nix
+5
-2
@@ -24,8 +24,11 @@ in
24
dates = "03,09,15,21:15";
25
};
26
27
- # gc outputs as well, since they are served from the cache
28
- nix.settings.gc-keep-outputs = lib.mkForce false;
27
+ nix.settings = {
28
+ # gc outputs as well, since they are served from the cache
29
+ gc-keep-outputs = lib.mkForce false;
30
+ allowed-users = [ "hydra-www" ];
31
+ };
32
33
# Don't rate-limit the journal.
34
services.journald.rateLimitBurst = 0;