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; + }; +}