From 7e7c8947fc2ff5598124c4a4c18bd28432fa017e Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:01:35 -0500 Subject: rework most of config; probably broke jupiter again; working to add ganymede (non-nixos) to this repo --- modules/services/system/bluetooth.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete 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 deleted file mode 100644 index a86b5b3..0000000 --- a/modules/services/system/bluetooth.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ - pkgs, - lib, - config, - ... -}: let - cfg = config.collinux.services.bluetooth; -in - lib.mkIf cfg.enable { - hardware.bluetooth = { - enable = true; - powerOnBoot = true; - }; - - environment.systemPackages = [ - (lib.mkIf cfg.blueman.enable pkgs.blueman) - (lib.mkIf cfg.bluetuith.enable pkgs.bluetuith) - ]; - } -- cgit v1.3.1