diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2024-11-18 18:01:24 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2024-11-18 18:01:24 +0100 |
| commit | 4e5ea1832a1ebeaea2b99d93cb3532f01f356610 (patch) | |
| tree | dcb00e5d4cc6a934ebf65d20128994fea7aa4ccc /config/networking.nix | |
| parent | d5daa0f24954ccf218986e1e57f628262fc47a18 (diff) | |
initial configuration
Diffstat (limited to 'config/networking.nix')
| -rw-r--r-- | config/networking.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/networking.nix b/config/networking.nix index 44464eb..09987b8 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -9,7 +9,13 @@ hostName = "hephaistos"; domain = "local"; - useDHCP = false; - interfaces."???".useDHCP = true; + wireless = { + enable = true; + environmentFile = "/etc/wpa_supplicant/secrets.env"; + networks.Quentintranet = { + authProtocols = [ "SAE" ]; + psk = "@PSK@"; + }; + }; }; } |
