From 1fb2d40aa83ff6b3ed54f9f93495e0cba21fe2fc Mon Sep 17 00:00:00 2001 From: biscuit Date: Tue, 3 Jun 2025 19:31:08 -0500 Subject: [PATCH] added bluetooth --- system/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/system/default.nix b/system/default.nix index 426d269..7258b07 100644 --- a/system/default.nix +++ b/system/default.nix @@ -28,6 +28,13 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + hardware = { + bluetooth = { + enable = true; + powerOnBoot = true; + }; + }; + i18n.defaultLocale = "en_US.UTF-8"; console = { font = "Lat2-Terminus16"; @@ -42,6 +49,7 @@ services = { openssh.enable = true; libinput.enable = touchpadSupport; + blueman.enable = true; }; programs.bash = {