nixos-configs/modules/networking.nix

14 lines
198 B
Nix
Raw Normal View History

2024-11-24 13:18:43 +01:00
_: {
2023-09-24 14:56:07 +02:00
config = {
services.tailscale = {
enable = true;
openFirewall = true;
};
networking.firewall = {
enable = true;
checkReversePath = "loose";
};
2023-09-24 14:56:07 +02:00
};
}