18 lines
282 B
Nix
18 lines
282 B
Nix
{ pkgs
|
|
, config
|
|
, lib
|
|
, ...
|
|
}:
|
|
with lib; let
|
|
cfg = config.eboskma.bluetooth;
|
|
in
|
|
{
|
|
options.eboskma.bluetooth = {
|
|
enable = mkEnableOption "activate bluetooth";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
hardware.bluetooth.enable = true;
|
|
services.blueman.enable = true;
|
|
};
|
|
}
|