nixos/modules/desktop/apps/localsend/default.nix
2024-07-05 11:53:58 +04:00

20 lines
399 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.apps.localsend;
in
{
options.modules.desktop.apps.localsend = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
localsend
];
networking.firewall = {
allowedTCPPorts = [ 53317 ];
allowedUDPPorts = [];
};
};
}