Skip to content

Instantly share code, notes, and snippets.

@frio
Created September 22, 2019 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frio/ff645a69c3b7134f96c33bfd302dbf05 to your computer and use it in GitHub Desktop.
Save frio/ff645a69c3b7134f96c33bfd302dbf05 to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
{
# Enable sound and Bluetooth headset support
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
hardware.pulseaudio.package = pkgs.pulseaudioFull;
hardware.bluetooth.enable = true;
# This should probably be handled by other settings, but things weren't
# working so I've just hacked it in
services.dbus.enable = true;
services.dbus.packages = [ pkgs.blueman ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment