summaryrefslogtreecommitdiff
path: root/config/networking.nix
blob: 09987b832f08afc875c0f30df54d3b765c4ca66f (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;
      environmentFile = "/etc/wpa_supplicant/secrets.env";
      networks.Quentintranet = {
	authProtocols = [ "SAE" ];
        psk = "@PSK@";
      };
    };
  };
}