From d61c80cec4095efef625daecca71ad6b4231abea Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 2 May 2022 13:26:00 +0200 Subject: [PATCH] services: lohr: add ssh to path SSH binary path is no longer hard coded in the git binary, see https://github.com/NixOS/nixpkgs/commit/cae8d1a2ed7ee3bd0a3f029b452ce6ef25537278 --- services/lohr.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/lohr.nix b/services/lohr.nix index b4c54bc..c7a5acf 100644 --- a/services/lohr.nix +++ b/services/lohr.nix @@ -56,7 +56,10 @@ in { User = "lohr"; Group = "lohr"; }; - path = [pkgs.git]; + path = [ + pkgs.git + pkgs.openssh + ]; }; users.users.lohr = {