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