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