infra/config/services/gitlab/default.nix

16 lines
230 B
Nix
Raw Normal View History

2024-03-09 02:37:57 +01:00
{
imports = [
./module.nix
./nginx.nix
./secrets.nix
];
services.gitlab = {
enable = true;
https = true;
port = 24136;
host = "gitlab.winston.sh";
initialRootEmail = "hey@winston.sh";
};
}