summaryrefslogtreecommitdiff
path: root/modules/endlessh.nix
blob: e6079354fd1f7f55cb3ebb1cc4ec593999297d38 (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
25
{ config, lib, ... }:
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 ];
    };
}