16 lines
529 B
Nix
16 lines
529 B
Nix
{ config, pkgs, ... }: {
|
|
sops.secrets.cachix-agent-token.sopsFile = ./secrets.yaml;
|
|
|
|
systemd.services.cachix-deploy-agent = let
|
|
sources = import ../../nix/sources.nix {};
|
|
in {
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ config.nix.package ];
|
|
restartIfChanged = false;
|
|
serviceConfig = {
|
|
Restart = "on-failure";
|
|
EnvironmentFile = config.sops.secrets.cachix-agent-token.path;
|
|
ExecStart = "${import sources.cachix {}}/bin/cachix deploy agent ${config.networking.hostName}";
|
|
};
|
|
};
|
|
}
|