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 + ]; }; }