From 62dd563be891dd4411d1f7dacb188c0c1d187fd5 Mon Sep 17 00:00:00 2001 From: tux Date: Wed, 15 Jul 2026 12:04:30 +0530 Subject: [PATCH] feat: add bluetui --- modules/nixos/hardware/bluetooth.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/nixos/hardware/bluetooth.nix b/modules/nixos/hardware/bluetooth.nix index 6ce667d..1f58530 100644 --- a/modules/nixos/hardware/bluetooth.nix +++ b/modules/nixos/hardware/bluetooth.nix @@ -1,7 +1,11 @@ { - flake.modules.nixos.hardware = { + flake.modules.nixos.hardware = { pkgs, ... }: { hardware.bluetooth = { enable = true; }; + + environment.systemPackages = [ + pkgs.bluetui + ]; }; }