From d61e378405f8c0100c287cd455b4fca9fca605d2 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Sat, 7 Feb 2026 12:31:29 +0100 Subject: [PATCH] remove blueman Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- nixos/bluetooth.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/bluetooth.nix b/nixos/bluetooth.nix index 2ee6bfa..cea59b7 100644 --- a/nixos/bluetooth.nix +++ b/nixos/bluetooth.nix @@ -1,9 +1,7 @@ # Bluetooth configuration for NixOS -{pkgs, ...}: { - environment.systemPackages = with pkgs; [blueman]; +{ hardware.bluetooth = { enable = true; powerOnBoot = true; }; - services.blueman.enable = true; }