aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/hardware/bluetooth/default.nix
blob: ca628c53cd3598b0059fd6685f0601dafed02459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }:

{
  hardware.bluetooth = {
    enable = true;
    config = {
      General = {
        Enable = "Source,Sink,Media,Socket";
      };
    };
  };
  
  services.blueman.enable = true;
}