From 9d72ffae25122617f9b0faec214360f91af39a57 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 16 May 2022 17:45:20 -0700 Subject: bluetooh: enable on aptos --- home/bluetooth/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home/bluetooth/default.nix (limited to 'home/bluetooth/default.nix') diff --git a/home/bluetooth/default.nix b/home/bluetooth/default.nix new file mode 100644 index 0000000..51ecc4a --- /dev/null +++ b/home/bluetooth/default.nix @@ -0,0 +1,10 @@ +{ config, lib, ... }: +let cfg = config.my.home.bluetooth; +in { + options.my.home.bluetooth = with lib; { + enable = mkEnableOption "bluetooth configuration"; + }; + + config = + lib.mkIf cfg.enable { services.blueman-applet = { enable = true; }; }; +} -- cgit 1.4.1