11 lines
257 B
Nix
11 lines
257 B
Nix
{ config, lib, ... }:
|
|
{
|
|
sops.secrets.cachix-agent-token.sopsFile = ./secrets.yaml;
|
|
|
|
services.cachix-agent = {
|
|
enable = true;
|
|
credentialsFile = config.sops.secrets.cachix-agent-token.path;
|
|
};
|
|
|
|
system.autoUpgrade.enable = lib.mkForce false;
|
|
}
|