nixos/localsend: init module

This commit is contained in:
Luis David Licea Torres
2024-07-14 00:08:33 +05:30
committed by John Titor
parent fd8e761b5c
commit f5443063a2
2 changed files with 25 additions and 0 deletions
+1
View File
@@ -226,6 +226,7 @@
./programs/less.nix
./programs/liboping.nix
./programs/light.nix
./programs/localsend.nix
./programs/mdevctl.nix
./programs/mepo.nix
./programs/mininet.nix
+24
View File
@@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.localsend;
firewallPort = 53317;
in
{
options.programs.localsend = {
enable = lib.mkEnableOption "localsend, an open source cross-platform alternative to AirDrop";
openFirewall = lib.mkEnableOption "opening the firewall port ${toString firewallPort} for receiving files" // {
default = true;
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ pkgs.localsend ];
networking.firewall.allowedTCPPorts = lib.optionals cfg.openFirewall [ firewallPort ];
};
}