Allows (advanced) configuration of GitLab CI using Nix. https://nix-gitlab-ci.projects.tf
Find a file
2023-05-29 19:42:03 +00:00
Dockerfile chore: initial commit 2023-05-29 13:52:53 +02:00
entrypoint.sh fix: don't throw away stdout 2023-05-29 19:42:03 +00:00
README.md chore: initial commit 2023-05-29 13:52:53 +02:00

Gitlab Nix Docker Image

Image: technofab/nix-gitlab-ci:latest

This simple image tries to start a Nix devShell from a flake.nix in the repository. It uses the devShell named ci (optionally just link to the default shell, see below).

...
rec {
    default = devenv.lib.mkShell {};
    ci = default;
};
...