fix: forgejo intranet ssh

This commit is contained in:
Leyla Becker 2026-04-13 10:09:11 -05:00
parent 40c0faaffa
commit 79a8dda40f
5 changed files with 51 additions and 27 deletions

View file

@ -8,6 +8,7 @@ in {
mod.forgejo-proxy
mod.forgejo-fail2ban
mod.forgejo-storage
mod.forgejo-ssh
];
};
}

View file

@ -0,0 +1,49 @@
{...}: {
flake.nixosModules.forgejo-ssh = {
lib,
config,
pkgs,
...
}: let
gitUser = config.services.forgejo.settings.server.BUILTIN_SSH_SERVER_USER;
forgejo = config.services.forgejo.package;
stateDir = config.services.forgejo.stateDir;
forgejoKeysScript = pkgs.writeShellScript "forgejo-keys" ''
FORGEJO_WORK_DIR=${stateDir} ${lib.getExe forgejo} keys -e git -u "$1" -t "$2" -k "$3"
'';
forgejoKeysPath = "/run/forgejo-keys";
in {
config = lib.mkIf config.services.forgejo.enable {
# sshd rejects connections for users with nologin shell before
# processing authorized_keys, so we need a valid shell even though
# the command= wrapper in Forgejo's keys prevents actual shell access.
users.users.${gitUser}.shell = pkgs.bash;
users.groups.${config.services.forgejo.group}.members = [gitUser];
services.openssh.settings.AllowUsers = [gitUser];
# Copy the key lookup script to a root-owned path outside /nix/store.
# sshd StrictModes requires AuthorizedKeysCommand and all parent dirs
# to be owned by root with no group/world writes. /nix/store and /etc
# symlinks both fail this check.
system.activationScripts.forgejo-ssh-keys = lib.stringAfter ["etc"] ''
install -m 0755 -o root -g root ${forgejoKeysScript} ${forgejoKeysPath}
'';
services.openssh.extraConfig = ''
Match User ${gitUser}
AuthorizedKeysCommandUser ${gitUser}
AuthorizedKeysCommand ${forgejoKeysPath} %u %t %k
AuthenticationMethods publickey
KbdInteractiveAuthentication no
PasswordAuthentication no
AllowAgentForwarding no
AllowTcpForwarding no
X11Forwarding no
PermitTTY no
'';
};
};
}