Ahoj,
neřešili jste někdo gitlab runner na nixosu?
Když použiju nasledujici config, systemctl služba se sic zapne, ale do toml
souboru (/etc/gitlab-runner/config.toml) se nezapíše a nezaregistruje se
samotny runner (jak to například děla ten baliček po naklonovani https://
gitlab.com/arianvp/nixos-gitlab-runner/ )
```
{
services.gitlab-runner = {
enable = true;
configOptions = {
runners = [
{
name = "nixos";
url = "https://gitlab.com/";
token = "tady_token";
executor = "shell";
}];
};
};
}
```