Skip to content

Instantly share code, notes, and snippets.

@fpletz
Created February 28, 2016 22:46
Show Gist options
  • Save fpletz/5afe279f7ad7466af555 to your computer and use it in GitHub Desktop.
Save fpletz/5afe279f7ad7466af555 to your computer and use it in GitHub Desktop.
NixOS Gitlab Example
services.gitlab = {
enable = true;
databasePassword = "redacted";
https = true;
host = "yolovo.test.bpletza.de";
port = 443;
user = "git";
group = "git";
extraConfig = { gitlab = { default_projects_features = { builds = false; }; }; };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment