nixos-config/profiles/bluetooth.nix
2020-09-27 22:20:24 +02:00

16 lines
393 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;
home-manager.users.charlotte = { ... }: {
services.blueman-applet.enable = true;
};
}