From ef81fe1809fd754dabf4f9696e9d84bab258b682 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Thu, 13 Aug 2026 17:05:03 +0200 Subject: [PATCH] fix sshd --- hosts/git/default.nix | 2 +- hosts/git/openssh.nix | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 hosts/git/openssh.nix diff --git a/hosts/git/default.nix b/hosts/git/default.nix index 0788cce..5ccac8b 100644 --- a/hosts/git/default.nix +++ b/hosts/git/default.nix @@ -3,7 +3,7 @@ { imports = [ ../common.nix - ./openssh.nix + ../../services/openssh.nix ../../services/prometheus-node.nix ./forgejo.nix #./forgejo-runner.nix diff --git a/hosts/git/openssh.nix b/hosts/git/openssh.nix deleted file mode 100644 index bc983a9..0000000 --- a/hosts/git/openssh.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ ... }: - -{ - imports = [ ../../services/openssh.nix ]; - - services.openssh = { - settings.PerSourcePenalties = false; - extraConfig = '' - Match User forgejo - AcceptEnv GIT_PROTOCOL - ''; - }; -} -