From d94d620d2f393e274676a619b8a56f97f0ed7524 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 26 Jun 2025 13:26:37 -0400 Subject: make system config more modular --- system/bluetooth.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 system/bluetooth.nix (limited to 'system/bluetooth.nix') diff --git a/system/bluetooth.nix b/system/bluetooth.nix new file mode 100644 index 0000000..2015eb6 --- /dev/null +++ b/system/bluetooth.nix @@ -0,0 +1,12 @@ +{ + lib, + config, + ... +}: let + inherit (lib) mkIf; +in { + config = mkIf config.bluetooth { + hardware.bluetooth.enable = true; + services.blueman.enable = true; + }; +} -- cgit v1.2.3-freya