nixos: Replace pkgs.openssh with config.programs.ssh.package

This commit is contained in:
William A. Kennington III
2015-06-26 17:09:58 -07:00
parent da4266afb6
commit fee9ef8659
6 changed files with 6 additions and 6 deletions
@@ -57,7 +57,7 @@ in {
};
packages = mkOption {
default = [ pkgs.stdenv pkgs.git pkgs.jdk pkgs.openssh pkgs.nix ];
default = [ pkgs.stdenv pkgs.git pkgs.jdk config.programs.ssh.package pkgs.nix ];
type = types.listOf types.package;
description = ''
Packages to add to PATH for the jenkins process.