nixos-config/sys/profiles/network/localsend.nix
2025-01-16 10:08:58 +01:00

8 lines
179 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
localsend
];
networking.firewall.allowedTCPPorts = [53317];
networking.firewall.allowedUDPPorts = [53317];
}