From e2d6f929696303c7c6b137447706db3d76b82d6f Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sun, 23 Feb 2025 21:04:51 +0300 Subject: [PATCH] feat: add blueman module --- modules/linux/blueman.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/linux/blueman.nix diff --git a/modules/linux/blueman.nix b/modules/linux/blueman.nix new file mode 100644 index 0000000..c77d6c3 --- /dev/null +++ b/modules/linux/blueman.nix @@ -0,0 +1,9 @@ +{ config, lib, ... }: let + inherit (lib) enabled merge mkIf; +in merge <| mkIf config.isDesktop { + services.blueman = enabled; + + hardware.bluetooth = enabled { + powerOnBoot = true; + }; +}