summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/sharing.nix
blob: f427c8a62d97953b99ca47d52d9f776420d68c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  config,
  pkgs,
  lib,
  ...
}:
{
  options.programs.sharing = {
    enable = lib.mkEnableOption ''
      sharing, a CLI tool for sharing files.

      Note that it will opens the 7478 port for TCP in the firewall, which is needed for it to function properly
    '';
  };
  config =
    let
      cfg = config.programs.sharing;
    in
    lib.mkIf cfg.enable {
      environment.systemPackages = [ pkgs.sharing ];
      networking.firewall.allowedTCPPorts = [ 7478 ];
    };
}