Unverified Commit 92ef45ef authored by Philip Taron's avatar Philip Taron
Browse files

nixos/endlessh: fix eval

parent b7090b32
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ in
          Restart = "always";
          ExecStart =
            with cfg;
            concatStringsSep " " (
            lib.concatStringsSep " " (
              [
                "${pkgs.endlessh}/bin/endlessh"
                "-p ${toString port}"
@@ -109,7 +109,7 @@ in
        };
    };

    networking.firewall.allowedTCPPorts = with cfg; optionals openFirewall [ port ];
    networking.firewall.allowedTCPPorts = with cfg; lib.optionals openFirewall [ port ];
  };

  meta.maintainers = with lib.maintainers; [ azahi ];