GitLab CI¶
- Create new binary cache on https://app.cachix.org/cache and generate a write auth token. 
- Replace - mycachein the following- .gitlab-ci.ymlwith your cache name:
image: docker.nix-community.org/nixpkgs/cachix-flakes
build:
  variables:
    CACHIX_CACHE_NAME: mycache
  before_script:
    - cachix use "$CACHIX_CACHE_NAME"
  script:
    - cachix watch-exec $CACHIX_CACHE_NAME -- nix-build default.nix
- Follow variables configuration tutorial to - export CACHIX_AUTH_TOKEN=....
 
            