nixos-config/modules/core/network.nix
2024-01-13 14:35:42 +01:00

22 lines
465 B
Nix

{ pkgs, ... }:
{
networking = {
hostName = "nixos";
networkmanager.enable = true;
nameservers = [ "1.1.1.1" ];
firewall = {
enable = true;
allowedTCPPorts = [ 22 80 443 59010 59011 ];
allowedUDPPorts = [ 59010 59011 ];
# allowedUDPPortRanges = [
# { from = 4000; to = 4007; }
# { from = 8000; to = 8010; }
# ];
};
};
environment.systemPackages = with pkgs; [
networkmanagerapplet
];
}