13 lines
198 B
Nix
13 lines
198 B
Nix
_: {
|
|
config = {
|
|
services.tailscale = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
networking.firewall = {
|
|
enable = true;
|
|
checkReversePath = "loose";
|
|
};
|
|
};
|
|
}
|