From db99230d55d05c966d33679216cca0f92659c97d Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Thu, 5 Sep 2024 18:13:44 -0400 Subject: [PATCH] github: add packages, and increase runners --- README.md | 2 +- common/github-runner.nix | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28aa49f..55ab4ed 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ just deploy ny-ci-nixos ``` >[!NOTE] -> This requires you to be connected to Nammayatri Tailscale network! +> This requires you to be connected to Nammayatri [Tailscale](https://login.tailscale.com/admin/machines) network! ## Progress diff --git a/common/github-runner.nix b/common/github-runner.nix index 17939a4..083f2c0 100644 --- a/common/github-runner.nix +++ b/common/github-runner.nix @@ -4,11 +4,24 @@ age.secretsDir = ./secrets; runnerSettings = { extraPackages = with pkgs; [ + # Nix stuff omnix + cachix + openssh # flake inputs may use git+ssh + + # Docker + docker + + # Basics + bashInteractive + coreutils + curl + gnumake + git ]; }; orgRunners = { - "nammayatri".num = 2; + "nammayatri".num = 8; }; }; }