11 lines
203 B
Nix
11 lines
203 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
firewall = {
|
|
enable = true;
|
|
checkReversePath = "loose"; # Tailscale mail fail without this
|
|
};
|
|
};
|
|
}
|