From 1bfd96c0d0096ea46cbf24020f4d1425d9090496 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 31 Mar 2026 15:36:34 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20enable=20WiFi=20on=20phantom-ship=20?= =?UTF-8?q?=F0=9F=93=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Uses /etc/wpa_supplicant.conf for credentials (outside repo), same pattern as sunken-ship. --- nixos/hosts/phantom-ship.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/phantom-ship.nix b/nixos/hosts/phantom-ship.nix index afa71f7..e286e4a 100644 --- a/nixos/hosts/phantom-ship.nix +++ b/nixos/hosts/phantom-ship.nix @@ -10,7 +10,8 @@ in imports = [ ./phantom-ship-hardware.nix ]; networking.hostName = "phantom-ship"; - networking.useDHCP = lib.mkDefault true; # Ethernet; no wireless + networking.useDHCP = lib.mkDefault true; + networking.wireless.enable = true; # credentials in /etc/wpa_supplicant.conf (outside repo) time.timeZone = "Europe/Copenhagen"; nix.settings.experimental-features = [ "nix-command" "flakes" ];