infra/config/services/gitlab/default.nix

16 lines
247 B
Nix

{
imports = [
./module.nix
./nginx.nix
./secrets.nix
./runner.nix
];
services.gitlab = {
enable = true;
https = true;
port = 24136;
host = "gitlab.winston.sh";
initialRootEmail = "hey@winston.sh";
};
}