fixed forgejo service so it can build

This commit is contained in:
Lyn 2024-09-05 21:11:15 +02:00
parent f35c3bba1b
commit 00849c7493

View file

@ -1,5 +1,5 @@
{pkgs, lib, config}: {pkgs, lib, config, ...}:
with lib with builtins; { with lib; with builtins; {
services.forgejo = { services.forgejo = {
enable = true; enable = true;
settings.server = { settings.server = {
@ -38,4 +38,4 @@ with lib with builtins; {
AuthorizedKeysFile ${config.users.users.forgejo.home}/.ssh/authorized_keys AuthorizedKeysFile ${config.users.users.forgejo.home}/.ssh/authorized_keys
''; '';
networking.firewall.allowedTCPPorts = [48540]; networking.firewall.allowedTCPPorts = [48540];
} }