nixos-config/modules/system/bluetooth.nix

16 lines
324 B
Nix

{ config, lib, ... }:
{
options.custom.bluetooth.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.bluetooth.enable {
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
};
logitech.wireless.enable = true;
};
services.blueman.enable = true;
};
}