nixos-config/profiles/bluetooth.nix
Charlotte Van Petegem 89bf75a91e Reorganize profiles
2020-05-23 10:25:15 +02:00

8 lines
212 B
Nix

{ pkgs, ... }:
{
hardware.bluetooth.enable = true;
services.blueman.enable = true;
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
hardware.pulseaudio.package = pkgs.pulseaudioFull;
}