3
0
Fork 0
forked from mirrors/nixpkgs

gitlab: add openssh dependency to gitaly

This commit is contained in:
Jeff Slight 2019-01-30 11:29:32 -08:00
parent a26117593d
commit 059e5e0ba0

View file

@ -497,7 +497,12 @@ in {
systemd.services.gitaly = {
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ gitAndTools.git cfg.packages.gitaly.rubyEnv cfg.packages.gitaly.rubyEnv.wrappedRuby ];
path = with pkgs; [
openssh
gitAndTools.git
cfg.packages.gitaly.rubyEnv
cfg.packages.gitaly.rubyEnv.wrappedRuby
];
serviceConfig = {
Type = "simple";
User = cfg.user;