summaryrefslogtreecommitdiff
path: root/modules/nixos/endlessh.nix
blob: 67789fd90a55a27af16353e3191f7269b399e098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.endlessh;
in {
  options.nixfiles.modules.endlessh.enable = mkEnableOption "endlessh";

  config = let
    port = 22;
  in
    mkIf cfg.enable {
      services.endlessh = {
        enable = true;
        inherit port;
        extraOptions = ["-v" "-4"];
      };

      networking.firewall.allowedTCPPorts = [port];
    };
}