tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/endlessh: fix eval
philiptaron.tngl.sh
1 year ago
92ef45ef
b7090b32
+2
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
security
endlessh.nix
+2
-2
nixos/modules/services/security/endlessh.nix
···
60
60
Restart = "always";
61
61
ExecStart =
62
62
with cfg;
63
63
-
concatStringsSep " " (
63
63
+
lib.concatStringsSep " " (
64
64
[
65
65
"${pkgs.endlessh}/bin/endlessh"
66
66
"-p ${toString port}"
···
109
109
};
110
110
};
111
111
112
112
-
networking.firewall.allowedTCPPorts = with cfg; optionals openFirewall [ port ];
112
112
+
networking.firewall.allowedTCPPorts = with cfg; lib.optionals openFirewall [ port ];
113
113
};
114
114
115
115
meta.maintainers = with lib.maintainers; [ azahi ];