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