diff --git a/services/gitlab.nix b/services/gitlab.nix index 1fe7ae7..d92dbe9 100644 --- a/services/gitlab.nix +++ b/services/gitlab.nix @@ -1,14 +1,12 @@ { config, pkgs, ... }: { - services.nginx = { - virtualHosts."git.stubbe.rocks" = { - enableACME = true; - forceSSL = true; - locations."/".proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket"; - }; + services.nginx.virtualHosts."git.stubbe.rocks" = { + enableACME = true; + forceSSL = true; + locations."/".proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket"; + }; - }; services.gitlab = { enable = true; host = "git.stubbe.rocks";