summaryrefslogtreecommitdiff
path: root/modules/nixos/endlessh.nix
blob: f1bf0bc4709c05b931ca1fb48bb44ac9535a882d (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
29
30
{ 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 ];
    };
}