nixos-config/profiles/bluetooth.nix
2020-07-12 11:12:29 +02:00

12 lines
300 B
Nix

{ pkgs, ... }:
{
custom.zfs.systemLinks = [
{ path = "/var/lib/bluetooth"; type = "cache"; }
];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
hardware.pulseaudio.package = pkgs.pulseaudioFull;
}