Files
nix/hosts/common/system/configs/bluetooth/default.nix
2024-08-08 22:03:15 +03:00

16 lines
336 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
];
}