From c43cd0ee17398521446376ef2aadb19388c32bff Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 31 Mar 2026 15:41:33 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20enable=20redistributable=20firmware=20on?= =?UTF-8?q?=20phantom-ship=20=F0=9F=93=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit iwlwifi (Intel 8260 WiFi), GPU, and Bluetooth firmware were missing. --- nixos/hosts/phantom-ship.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/hosts/phantom-ship.nix b/nixos/hosts/phantom-ship.nix index e286e4a..c981e50 100644 --- a/nixos/hosts/phantom-ship.nix +++ b/nixos/hosts/phantom-ship.nix @@ -12,6 +12,8 @@ in networking.hostName = "phantom-ship"; networking.useDHCP = lib.mkDefault true; networking.wireless.enable = true; # credentials in /etc/wpa_supplicant.conf (outside repo) + + hardware.enableRedistributableFirmware = true; # iwlwifi (Intel 8260) + GPU + BT firmware time.timeZone = "Europe/Copenhagen"; nix.settings.experimental-features = [ "nix-command" "flakes" ];