summaryrefslogtreecommitdiff
path: root/modules/nixos/bluetooth.nix
blob: 36e8f8f884f86895f838b9a208e2c535d931af9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, lib, ... }: {

  hardware.bluetooth = {
    enable = true;
    # config = "
    #   [General]
    #   Enable=Source,Sink,Media,Socket
    # ";
  };

  services.blueman.enable = true;
}