nixos-config/systemProfiles/network/localsend.nix
2024-10-25 10:39:48 +02:00

12 lines
209 B
Nix

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