16 lines
276 B
Nix
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"
|
|
];
|
|
}
|