Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cachix/cachix-ci-agents
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f7d3397328107cf23aed6d5f1917ed59118c7491
Choose a base ref
..
head repository: cachix/cachix-ci-agents
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 74f6b9b8e69501196ffe1fa611048f895c17ef22
Choose a head ref
Showing with 116 additions and 495 deletions.
  1. +1 −0 agents/linux.nix
  2. +1 −0 agents/macos.nix
  3. +97 −476 flake.lock
  4. +6 −17 flake.nix
  5. +7 −2 modules/common.nix
  6. +4 −0 modules/github-runner.nix
1 change: 1 addition & 0 deletions agents/linux.nix
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@
githubOrganization = "cachix";
namePrefix = "cachix-${pkgs.stdenv.system}";
extraGroups = [ "docker" ];
extraPackages = [ pkgs.devenv ];
tokenFile = config.age.secrets.github-runner-token.path;
serviceOverrides = {
# TODO: merge this properly
1 change: 1 addition & 0 deletions agents/macos.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@
githubOrganization = "cachix";
namePrefix = "cachix-${pkgs.stdenv.system}";
tokenFile = config.age.secrets.github-runner-token.path;
extraPackages = [ pkgs.devenv ];
};

# required on M1
Loading