nix-gitlab-ci/README.md
2023-05-29 13:52:53 +02:00

399 B

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;
};
...