nixos-config/modules/system/devices/bluetooth/default.nix

14 lines
320 B
Nix

{ lib, config, ... }:
{
config = lib.mkIf config.system.desktop.enable {
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
};
}