infra/modules/nixos/common/deploy.nix

10 lines
202 B
Nix
Raw Normal View History

{ config, ... }:
2023-07-21 15:27:05 +10:00
{
sops.secrets.cachix-agent-token.sopsFile = ./secrets.yaml;
services.cachix-agent = {
enable = true;
credentialsFile = config.sops.secrets.cachix-agent-token.path;
};
}