12 lines
209 B
Nix
12 lines
209 B
Nix
{
|
|
self,
|
|
super,
|
|
root,
|
|
}: {pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
localsend
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [53317];
|
|
networking.firewall.allowedUDPPorts = [53317];
|
|
}
|