Created
September 22, 2019 05:52
-
-
Save frio/ff645a69c3b7134f96c33bfd302dbf05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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