NixOS configuration ๐Ÿช„

๐Ÿšง Light changes for fixing gitlab-ssh

Signed-off-by: Xaiya Schumin <d.schumin@proton.me>

+8 -4
+8 -4
modules/nixos/services/gitlab.nix
··· 63 63 services.gitlab = { 64 64 enable = true; 65 65 66 - databaseCreateLocally = false; /* Use our postgres database */ 67 - databaseHost = ""; 66 + databaseCreateLocally = false; # Use our postgres databse 67 + databaseHost = ""; # Using the local socket 68 68 69 + port = 443; 70 + https = true; 71 + host = "git.xaiya.dev"; 72 + 73 + extraGitlabRb = '' ''; 74 + 69 75 databasePasswordFile = getSecret "password"; 70 76 initialRootPasswordFile = getSecret "password"; 71 77 ··· 79 85 activeRecordDeterministicKeyFile = getSecret "record-deterministic-key"; 80 86 activeRecordSaltFile = getSecret "salt"; 81 87 }; 82 - 83 - port = 8001; 84 88 }; 85 89 86 90 services.openssh.enable = true; # TODO