fix: huge ass security oopsy daisy

This commit is contained in:
Teesh 2026-02-08 23:01:10 +02:00
parent a8644e09fd
commit a88a0e8a49
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,5 @@
{...}: {
flake.modules.nixos.base = {
networking.networkmanager.enable = true;
networking.firewall.enable = false;
};
}

View file

@ -1,5 +1,7 @@
{...}: {
flake.modules.nixos.desktop = {pkgs, ...}: {
environment.systemPackages = [pkgs.localsend];
networking.firewall.allowedTCPPorts = [53317];
networking.firewall.allowedUDPPorts = [53317];
};
}