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











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

  services.blueman.enable = true;
}