From 00849c7493f4c78d2a70c948a7cf8efaf4faec56 Mon Sep 17 00:00:00 2001 From: lynatic Date: Thu, 5 Sep 2024 21:11:15 +0200 Subject: [PATCH] fixed forgejo service so it can build --- services/forgejo.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/forgejo.nix b/services/forgejo.nix index 2adf26e..01f18c0 100644 --- a/services/forgejo.nix +++ b/services/forgejo.nix @@ -1,5 +1,5 @@ -{pkgs, lib, config}: -with lib with builtins; { +{pkgs, lib, config, ...}: +with lib; with builtins; { services.forgejo = { enable = true; settings.server = { @@ -38,4 +38,4 @@ with lib with builtins; { AuthorizedKeysFile ${config.users.users.forgejo.home}/.ssh/authorized_keys ''; networking.firewall.allowedTCPPorts = [48540]; -} \ No newline at end of file +}