idk I fixed some stuff

This commit is contained in:
KoenDR06 2026-02-10 15:17:32 +01:00
parent 4c66c514a3
commit 8aab959e42
2 changed files with 20 additions and 1 deletions

View file

@ -127,6 +127,18 @@ in {
...
}: {
environment.systemPackages = [pkgs.forgejo];
services.openssh = {
enable = true;
ports = [cfg.sshPort];
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
# AllowUsers = ["git"];
};
};
services.forgejo = {
enable = true;