nixos-config/modules/bluetooth/default.nix

19 lines
284 B
Nix
Raw Normal View History

{ pkgs
, config
, lib
, ...
2022-03-01 22:19:03 +01:00
}:
with lib; let
cfg = config.eboskma.bluetooth;
in
{
2021-11-22 08:04:54 +01:00
options.eboskma.bluetooth = {
enable = mkEnableOption "activate bluetooth";
};
config = mkIf (cfg.enable) {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
};
}