From 3c29f2f477c7ccc5445e1d03c0af76fd05791b5c Mon Sep 17 00:00:00 2001 From: Zeusina Date: Tue, 21 Jul 2026 23:30:26 +0300 Subject: [PATCH] feat(kachu-laptop): :sparkles: enable bluetooth --- hosts/kachu-laptop/hardware-configuration.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/hosts/kachu-laptop/hardware-configuration.nix b/hosts/kachu-laptop/hardware-configuration.nix index 54e46d0..6cf8452 100644 --- a/hosts/kachu-laptop/hardware-configuration.nix +++ b/hosts/kachu-laptop/hardware-configuration.nix @@ -60,6 +60,14 @@ ]; }; + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = true; + hardware.bluetooth.settings = { + General = { + Experimental = true; + }; + }; + swapDevices = [ { device = "/swap/swapfile"; @@ -88,9 +96,4 @@ package = config.boot.kernelPackages.nvidiaPackages.stable; powerManagement.enable = true; }; - - hardware.graphics = { - enable = true; - enable32Bit = true; - }; }