8 lines
179 B
Nix
8 lines
179 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
localsend
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [53317];
|
|
networking.firewall.allowedUDPPorts = [53317];
|
|
}
|