summaryrefslogtreecommitdiff
path: root/modules/nixos/endlessh.nix
blob: caf9a382ff505ab6e3b34727a4bc3dbb963688bf (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
26
27
28
{
  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 {
      ark.directories = [
        "/var/lib/gotify-server"
        "/var/lib/private/gotify-server"
      ];

      services.endlessh = {
        enable = true;
        inherit port;
        extraOptions = ["-v" "-4"];
      };

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