From a45c4551712c1ba5cb82eaf290f311ab0e8690e4 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 9 Jun 2025 17:40:46 +0000 Subject: big changes --- modules/services/system/bluetooth.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/services/system/bluetooth.nix (limited to 'modules/services/system/bluetooth.nix') diff --git a/modules/services/system/bluetooth.nix b/modules/services/system/bluetooth.nix new file mode 100644 index 0000000..a0c3f86 --- /dev/null +++ b/modules/services/system/bluetooth.nix @@ -0,0 +1,16 @@ +{ + pkgs, + lib, + config, + ... +}: let + cfg = config.collinux.services.bluetooth; +in + lib.mkIf cfg.enable { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; + + environment.systemPackages = [pkgs.blueman]; + } -- cgit v1.3.1