lol

Fix NixOS evaluation on i686-linux

+2 -1
+2 -1
nixos/modules/services/networking/ssh/lshd.nix
··· 99 99 }; 100 100 101 101 subsystems = mkOption { 102 - default = [ ["sftp" "${pkgs.lsh}/sbin/sftp-server"] ]; 103 102 description = '' 104 103 List of subsystem-path pairs, where the head of the pair 105 104 denotes the subsystem name, and the tail denotes the path to ··· 115 114 ###### implementation 116 115 117 116 config = mkIf cfg.enable { 117 + 118 + services.lshd.subsystems = [ ["sftp" "${pkgs.lsh}/sbin/sftp-server"] ]; 118 119 119 120 jobs.lshd = 120 121 { description = "GNU lshd SSH2 daemon";