depot/cluster/services/cachix-deploy-agent/agent.nix

10 lines
205 B
Nix
Raw Normal View History

{ cluster, depot, ... }:
{
services.cachix-agent = {
enable = true;
credentialsFile = cluster.config.services.cachix-deploy-agent.secrets.token.path;
2023-12-01 18:45:27 +02:00
package = depot.packages.cachix;
};
}