Added TeamSpeak
This commit is contained in:
21
modules/bluetooth.nix
Normal file
21
modules/bluetooth.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
settings = {
|
||||
General = {
|
||||
Enable = "Source,Sink,Media,Socket";
|
||||
Experimental = true;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
services.blueman.enable = true; # Graphical Manager
|
||||
|
||||
hardware.pulseaudio = {
|
||||
enable = true;
|
||||
package = pkgs.pulseaudioFull;
|
||||
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user