From 363d18421deaaf16fd0a5225ef19cdc11487863f Mon Sep 17 00:00:00 2001 From: Inex Code Date: Mon, 1 Jul 2024 19:33:18 +0400 Subject: [PATCH] chore: Allow installing Forgejo 1.20 --- configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configuration.nix b/configuration.nix index f62669c..a9a8e7a 100644 --- a/configuration.nix +++ b/configuration.nix @@ -27,6 +27,11 @@ in # ./resources/limits.nix ]; + # We have to use this version to be able to migrate from Gitea. + nixpkgs.config.permittedInsecurePackages = [ + "forgejo-1.20.6-1-unstable-2024-04-18" + ]; + fileSystems."/".options = [ "noatime" ]; services.selfprivacy-api.enable = true;