Files
nixos-config/modules/system/bluetooth/default.nix
2025-02-23 15:07:40 -06:00

19 lines
318 B
Nix

{ lib, config, ... }:
let
cfg = config.systemSettings.bluetooth;
in {
options = {
systemSettings.bluetooth = {
enable = lib.mkEnableOption "Enable bluetooth";
};
};
config = lib.mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
};
services.blueman.enable = true;
};
}