tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Fix NixOS evaluation on i686-linux
Eelco Dolstra
11 years ago
4668f374
92651486
+2
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
ssh
lshd.nix
+2
-1
nixos/modules/services/networking/ssh/lshd.nix
···
99
99
};
100
100
101
101
subsystems = mkOption {
102
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
117
+
118
118
+
services.lshd.subsystems = [ ["sftp" "${pkgs.lsh}/sbin/sftp-server"] ];
118
119
119
120
jobs.lshd =
120
121
{ description = "GNU lshd SSH2 daemon";