infra/config/services/gitlab/default.nix
2024-03-09 01:37:57 +00:00

15 lines
230 B
Nix

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