18 lines
395 B
Nix
18 lines
395 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.hardware.bluetooth;
|
|
in {
|
|
options.modules.hardware.bluetooth = {
|
|
enable = mkEnableOption "Enable bluetooth, a short-range communication technology";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
|
|
# frontend
|
|
services.blueman.enable = true;
|
|
};
|
|
}
|