NixOS-Config/modules/system/devices/bluetooth/default.nix
2024-10-09 03:36:08 -04:00

16 lines
276 B
Nix

{ ... }:
{
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
# Lingering helps keep headphones connected
systemd.tmpfiles.rules = [
"f /var/lib/systemd/linger/jimbo"
];
}