From 0f1faa7008492337ce5e62a52f530e6369cba62c Mon Sep 17 00:00:00 2001 From: tux Date: Sat, 9 May 2026 04:22:08 +0530 Subject: [PATCH] feat: setup bluetooth --- modules/nixos/hardware/bluetooth.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/nixos/hardware/bluetooth.nix diff --git a/modules/nixos/hardware/bluetooth.nix b/modules/nixos/hardware/bluetooth.nix new file mode 100644 index 0000000..6ce667d --- /dev/null +++ b/modules/nixos/hardware/bluetooth.nix @@ -0,0 +1,7 @@ +{ + flake.modules.nixos.hardware = { + hardware.bluetooth = { + enable = true; + }; + }; +}