1
0
Fork 0

Enable bluetooth audio

master
dump_stack() 2019-10-22 16:08:01 +00:00
parent 2e5e08b7c7
commit 3e2f087125
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 18 additions and 1 deletions

View File

@ -37,7 +37,24 @@ in {
hardware.opengl.extraPackages = [ pkgs.vaapiIntel ];
sound.enable = true;
hardware.pulseaudio.enable = true;
# > bluetooth audio
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
extraConfig = "
[General]
Enable=Source,Sink,Media,Socket
";
};
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
extraModules = [ pkgs.pulseaudio-modules-bt ];
};
# < bluetooth audio
environment.variables = {
GDK_SCALE = "2";