Skip to content

Commit

Permalink
chore: icarus debug cachix/bk sc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnae committed Nov 25, 2024
1 parent 8ce31a7 commit 0bc0bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hosts/x86_64-linux/icarus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
config,
pkgs,
hostName,
self,
...
}: {
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHaa82NwBC+ty4Wyeuf5kdava7huSYF6k0NYF2ahwayW";
Expand Down Expand Up @@ -104,7 +103,7 @@
services.buildkite-agents.nix-build = {
tokenPath = config.age.secrets.buildkite-token.path;
privateSshKeyPath = config.age.secrets.buildkite-ssh-key.path;
runtimePackages = [pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix pkgs.cachix];
runtimePackages = [pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix pkgs.cachix pkgs.procps];
extraConfig = ''
spawn=4
'';
Expand All @@ -126,6 +125,7 @@
CACHIX_PID="$!"
echo cachix pid is "$CACHIX_PID"
echo "$CACHIX_PID" > /tmp/"$BUILDKITE_AGENT_ID".cachix.pid
# shellcheck disable=SC2009
ps aux | grep cachix
'';
post-command = ''
Expand Down

0 comments on commit 0bc0bf6

Please sign in to comment.