From a87f36a088808a82c518bd87d0856ed4e17cc536 Mon Sep 17 00:00:00 2001 From: kB01 <kb01@kb-one.de> Date: Wed, 1 Jan 2025 05:02:44 +0100 Subject: [PATCH] Added Bluetooth support to LoyAdjo and LANA9Z --- systems/x86_64-linux/LANA9Z/default.nix | 4 ++++ systems/x86_64-linux/LoyAdjo/default.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/systems/x86_64-linux/LANA9Z/default.nix b/systems/x86_64-linux/LANA9Z/default.nix index a38f285..1a1d4b5 100644 --- a/systems/x86_64-linux/LANA9Z/default.nix +++ b/systems/x86_64-linux/LANA9Z/default.nix @@ -34,6 +34,10 @@ # Enable networking networking.networkmanager.enable = true; + # Enable Bluetooth + hardware.bluetooth.enable = true; # enables support for Bluetooth + hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot + # Set your time zone. time.timeZone = "Europe/Berlin"; diff --git a/systems/x86_64-linux/LoyAdjo/default.nix b/systems/x86_64-linux/LoyAdjo/default.nix index ac21a9b..b714caa 100644 --- a/systems/x86_64-linux/LoyAdjo/default.nix +++ b/systems/x86_64-linux/LoyAdjo/default.nix @@ -30,6 +30,10 @@ # Enable networking networking.networkmanager.enable = true; + # Enable Bluetooth + hardware.bluetooth.enable = true; # enables support for Bluetooth + hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot + # Set your time zone. time.timeZone = "Europe/Berlin";