nixos-config/modules/system/devices/bluetooth/default.nix
2025-01-03 17:52:33 -05:00

17 lines
407 B
Nix

{ lib, config, ... }:
{
config = lib.mkIf config.system.desktop.enable {
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
systemd.tmpfiles.rules = [ "f /var/lib/systemd/linger/${config.sysusers.main}" ];
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
};
}