From 497d37c36a837742da5fb1b27d4273d9bc329232 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Fri, 12 Jul 2024 20:49:18 +0200 Subject: [PATCH] feat: enable bluetooth --- machines/xps/configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/machines/xps/configuration.nix b/machines/xps/configuration.nix index 05e01de..ca308ad 100644 --- a/machines/xps/configuration.nix +++ b/machines/xps/configuration.nix @@ -1,7 +1,15 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { networking.hostName = "xps"; boot.loader.grub.enableCryptodisk = true; + + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + + # battery level reporting + settings.General.Experimental = true; + }; }