7 lines
216 B
Nix
7 lines
216 B
Nix
{...}: {
|
|
flake.modules.nixos.desktop = {pkgs, ...}: {
|
|
environment.systemPackages = [pkgs.localsend];
|
|
networking.firewall.allowedTCPPorts = [53317];
|
|
networking.firewall.allowedUDPPorts = [53317];
|
|
};
|
|
}
|