summaryrefslogtreecommitdiff
path: root/modules/networking.nix
blob: 29de399fe7afbad20793588f23cdf42e7fca6aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ ... }:
{
  systemd.services."NetworkManager-wait-online".enable = false;
  networking = {
    hostName = "szpont";

    networkmanager = {
      enable = true;
      wifi.macAddress = "stable-ssid";
      ethernet.macAddress = "stable-ssid";
    };

    firewall = {
      enable = true;
      allowedTCPPorts = [  ];
      allowedUDPPorts = [  ];
    };
  };
}