summaryrefslogtreecommitdiff
path: root/config/networking.nix
blob: 4de42c9cd9febdbb3764a62fbbc6328d79e3f11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{...}: {
  personal.networking = {
    enable = true;
    firewall.http = true;
    ssh.enable = true;
  };

  networking = {
    hostName = "hephaistos";
    domain = "local";

    wireless = {
      enable = true;
      secretsFile = "/etc/wpa_supplicant/secrets";
      networks.Quentintranet = {
        authProtocols = ["SAE"];
        pskRaw = "ext:psk";
      };
    };
  };
}