From db0ea6832b54ad5a5c19044b455635aaa8b6bfe1 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Sat, 20 Jan 2024 16:48:58 -0500 Subject: [PATCH] feat(bluetooth): add module --- modules/bluetooth.nix | 5 +++++ modules/common.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 modules/bluetooth.nix diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix new file mode 100644 index 0000000..d109ddb --- /dev/null +++ b/modules/bluetooth.nix @@ -0,0 +1,5 @@ +{...}: { + hardware.bluetooth.enable = true; + + services.blueman.enable = true; +} diff --git a/modules/common.nix b/modules/common.nix index 9bfdaee..0d7a711 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -1,6 +1,7 @@ { imports = [ ./avahi.nix + ./bluetooth.nix ./bootloader.nix ./cups.nix ./flatpak.nix