liminalOS/modules/nixos/networking/default.nix

7 lines
190 B
Nix
Raw Normal View History

{
services.openssh.enable = true;
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
2024-08-16 06:42:35 -07:00
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
}