From 50e2b68a23497f5c92c1eeeee12fd69c0ae8d74e Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 14 Jul 2026 16:07:48 +0100 Subject: [PATCH] fix(asahi): set hardware.asahi.enable explicitly Upstream will stop defaulting hardware.asahi.enable to true and currently emits an evaluation warning to that effect. Set it explicitly on the lyrathorpe-mbp (MBP-Asahi) host to silence the warning and be robust to the future default change. Verified the warning no longer appears in the host toplevel eval. --- hosts/MBP-Asahi/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/MBP-Asahi/configuration.nix b/hosts/MBP-Asahi/configuration.nix index 3aa0d1f..f9d7c33 100644 --- a/hosts/MBP-Asahi/configuration.nix +++ b/hosts/MBP-Asahi/configuration.nix @@ -27,6 +27,10 @@ ]; }; + # Explicit rather than relying on the module default (which upstream will stop + # defaulting to true; the eval warns otherwise). + hardware.asahi.enable = true; + # Apple peripheral firmware (Wi-Fi/Bluetooth). The directory is gitignored and # populated out-of-band -- see README. hardware.asahi.peripheralFirmwareDirectory = ../../modules/firmware; -- 2.54.0