nixos/modules/nixos/bluetooth.nix

20 lines
313 B
Nix

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