lol

nixos/endlessh: fix eval

+2 -2
+2 -2
nixos/modules/services/security/endlessh.nix
··· 60 60 Restart = "always"; 61 61 ExecStart = 62 62 with cfg; 63 - concatStringsSep " " ( 63 + lib.concatStringsSep " " ( 64 64 [ 65 65 "${pkgs.endlessh}/bin/endlessh" 66 66 "-p ${toString port}" ··· 109 109 }; 110 110 }; 111 111 112 - networking.firewall.allowedTCPPorts = with cfg; optionals openFirewall [ port ]; 112 + networking.firewall.allowedTCPPorts = with cfg; lib.optionals openFirewall [ port ]; 113 113 }; 114 114 115 115 meta.maintainers = with lib.maintainers; [ azahi ];