nixos-config/modules/bluetooth/default.nix

16 lines
281 B
Nix
Raw Normal View History

2021-11-22 08:04:54 +01:00
{ 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;
};
}