nixos/modules/system/bluetooth/default.nix
2024-05-27 19:45:14 +02:00

16 lines
No EOL
297 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.system.bluetooth;
in
{
options.modules.system.bluetooth = {
enable = mkEnableOption ''
Enable pipewire with my custom configurations
'';
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}