18 lines
354 B
Nix
18 lines
354 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"
|
|
];
|
|
|
|
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
|
|
}
|