Unconditionally add ssh to nix-daemon's path for the ssh substitituer

Shea Levy 95a77ea3 17f88453

+2 -2
+2 -2
nixos/modules/services/misc/nix-daemon.nix
··· 286 286 systemd.services."nix-daemon" = 287 287 { description = "Nix Daemon"; 288 288 289 - path = [ nix pkgs.openssl pkgs.utillinux ] 290 - ++ optionals cfg.distributedBuilds [ pkgs.openssh pkgs.gzip ]; 289 + path = [ nix pkgs.openssl pkgs.utillinux pkgs.openssh ] 290 + ++ optionals cfg.distributedBuilds [ pkgs.gzip ]; 291 291 292 292 environment = cfg.envVars // { CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt"; }; 293 293