nixos-config/system/desktop/bluetooth.nix
2024-09-23 11:41:28 -04:00

15 lines
277 B
Nix

{
# Enable Bluetooth
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
# Enable lingering for Bluetooth
systemd.tmpfiles.rules = [
"f /var/lib/systemd/linger/jimbo"
];
}