From ac4858a04487d8918c871ec8c8dc2b8815fa61e2 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sat, 23 Jul 2022 20:11:20 +0200 Subject: [PATCH] newton: fix gitea-url --- nixos/modules/webapps/gitea.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/webapps/gitea.nix b/nixos/modules/webapps/gitea.nix index 0dc7abb..09cbbd8 100644 --- a/nixos/modules/webapps/gitea.nix +++ b/nixos/modules/webapps/gitea.nix @@ -1,6 +1,6 @@ { config, pkgs, ... }: { - gitea = { + services.gitea = { enable = true; cookieSecure = true; httpPort = 3001; @@ -16,7 +16,7 @@ name = "Git"; category = "app"; icon = "git"; - link = "http://git.buehler.rocks"; + link = "https://git.buehler.rocks"; }; }; }