summaryrefslogtreecommitdiff
path: root/modules/networking.nix
blob: ad4ea26f53397a34048fa91ef74285ce39b73747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ ... }:

{
  systemd.network.wait-online.enable = false;
  boot.initrd.systemd.network.wait-online.enable = false;
  networking = {
    hostName = "szpont";

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

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