Allows (advanced) configuration of GitLab CI using Nix. https://nix-gitlab-ci.projects.tf
Find a file
2023-06-05 18:48:07 +02:00
Dockerfile chore: set experimental features and auto-allow flake config 2023-06-05 18:48:07 +02:00
entrypoint.sh fix: move --accept-flake-config more to the left 2023-06-04 23:13:42 +02: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;
};
...