Fix NixOS evaluation on i686-linux

Changed files
+2 -1
nixos
modules
services
networking
ssh
+2 -1
nixos/modules/services/networking/ssh/lshd.nix
···
};
subsystems = mkOption {
-
default = [ ["sftp" "${pkgs.lsh}/sbin/sftp-server"] ];
description = ''
List of subsystem-path pairs, where the head of the pair
denotes the subsystem name, and the tail denotes the path to
···
###### implementation
config = mkIf cfg.enable {
+
+
services.lshd.subsystems = [ ["sftp" "${pkgs.lsh}/sbin/sftp-server"] ];
jobs.lshd =
{ description = "GNU lshd SSH2 daemon";