summaryrefslogblamecommitdiffstats
path: root/nixos/modules/bluetooth.nix
blob: 6c6a5df85bfad544c0788163f045d16f0e1f43b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                            
{
  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    settings = {
      General = {
        Enable = "Source,Sink,Media,Socket";
        Experimental = true;
      };
    };
  };

  services.blueman.enable = true;  
}