liminalOS/modules/nixos/networking/default.nix

7 lines
192 B
Nix
Raw Normal View History

{
services.openssh.enable = true;
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
networking.nameservers = [ "1.1.1.1" "1.0.0.1" ];
}