From fcd78675d91c07fcb572e1860a54cbbfdbcee825 Mon Sep 17 00:00:00 2001 From: jmug Date: Thu, 5 Jun 2025 00:27:11 -0700 Subject: [PATCH] [Asahi] Enable bluetooth. Signed-off-by: jmug --- hosts/asahi/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/asahi/configuration.nix b/hosts/asahi/configuration.nix index fca260c..10b637d 100644 --- a/hosts/asahi/configuration.nix +++ b/hosts/asahi/configuration.nix @@ -24,6 +24,11 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = false; + # Bluetooth. + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = false; + services.blueman.enable = true; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; # Allow unfree packages nixpkgs.config.allowUnfree = true;