14 lines
220 B
Nix
14 lines
220 B
Nix
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
settings = {
|
|
General.Experimental = true;
|
|
};
|
|
};
|
|
|
|
environment.persistence."/persist".directories = [
|
|
"/var/lib/bluetooth"
|
|
];
|
|
}
|