From fba3b614bd39bc05a8787eb3e851cc53f03869bc Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 4 Mar 2025 13:01:59 +0100 Subject: [PATCH] common/blueman: init --- hosts/common/default.nix | 1 + hosts/common/services/blueman.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 hosts/common/services/blueman.nix diff --git a/hosts/common/default.nix b/hosts/common/default.nix index f1e97a9..589dacf 100644 --- a/hosts/common/default.nix +++ b/hosts/common/default.nix @@ -13,6 +13,7 @@ in { ./programs/usbtop.nix ./programs/wireshark.nix + ./services/blueman.nix ./services/dbus.nix ./services/fwupd.nix ./services/irqbalance.nix diff --git a/hosts/common/services/blueman.nix b/hosts/common/services/blueman.nix new file mode 100644 index 0000000..175eed1 --- /dev/null +++ b/hosts/common/services/blueman.nix @@ -0,0 +1,4 @@ +{ config, ... }: +{ + services.blueman.enable = config.hardware.bluetooth.enable; +}