9 lines
202 B
Nix
9 lines
202 B
Nix
{ config, ... }:
|
|
{
|
|
sops.secrets.cachix-agent-token.sopsFile = ./secrets.yaml;
|
|
|
|
services.cachix-agent = {
|
|
enable = true;
|
|
credentialsFile = config.sops.secrets.cachix-agent-token.path;
|
|
};
|
|
}
|