enabled bluetooth

This commit is contained in:
Tyler Mayoff 2025-10-20 15:19:53 -04:00
parent 8142537b35
commit 4929f33d10
3 changed files with 42 additions and 22 deletions

View file

@ -62,8 +62,6 @@ in {
deno
basedpyright
taplo
unstable.ghostty-bin
];
homebrew = {
@ -102,8 +100,6 @@ in {
casks = [
"notunes"
"ghostty"
"hammerspoon"
"firefox"

View file

@ -43,6 +43,30 @@
networking.networkmanager.enable = true;
systemd.services.NetworkManager-wait-online.enable = false;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
# Shows battery charge of connected devices on supported
# Bluetooth adapters. Defaults to 'false'.
Experimental = true;
# When enabled other devices can connect faster to us, however
# the tradeoff is increased power consumption. Defaults to
# 'false'.
FastConnectable = true;
};
Policy = {
# Enable all controllers when they are found. This includes
# adapters present on start as well as adapters that are plugged
# in later on. Defaults to 'true'.
AutoEnable = true;
};
};
};
services.blueman.enable = true;
# Set your time zone.
time.timeZone = "America/New_York";