aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/carbon/system/network.nix
blob: 96a8a028ef25da96860ef8b36efc4c931d544561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  networking = {
    hostName = "carbon";
    computerName = "carbon";
    localHostName = "carbon";
    knownNetworkServices = [ "Wi-Fi" ];

    dns = [
      "1.1.1.1"
      "1.0.0.1"
      "2606:4700:4700::1111"
      "2606:4700:4700::1001"
    ];

    applicationFirewall = {
      enable = true;
      blockAllIncoming = false;
      enableStealthMode = true;
      allowSignedApp = true;
      allowSigned = true;
    };
  };
}