17 lines
337 B
Nix
17 lines
337 B
Nix
{ config, ... }:
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
settings = {
|
|
General.Experimental = true;
|
|
};
|
|
};
|
|
|
|
environment.persistence."/persist"."/var/lib/bluetooth" = { };
|
|
|
|
systemd.services.bluetooth.after = [
|
|
config.environment.persistence."/persist"."/var/lib/bluetooth".mount
|
|
];
|
|
}
|