Merge pull request #190792 from domenkozar/cachix-agent-typo

cachix-agent: fix a typo
This commit is contained in:
Domen Kožar
2022-09-11 16:41:20 +01:00
committed by GitHub
@@ -63,7 +63,7 @@ in {
KillMode = "process";
Restart = "on-failure";
EnvironmentFile = cfg.credentialsFile;
ExecStart = "${cfg.package}/bin/cachix ${lib.optionalString cfg.verbose "--verbose"} deploy agent ${cfg.name} ${if cfg.profile != null then profile else ""}";
ExecStart = "${cfg.package}/bin/cachix ${lib.optionalString cfg.verbose "--verbose"} deploy agent ${cfg.name} ${if cfg.profile != null then cfg.profile else ""}";
};
};
};