summaryrefslogtreecommitdiff
path: root/modules/networking.nix
blob: 9d1212d35cc971eab466c4fd4ab8277d5f772b80 (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 = [  ];
    };
  };
}