nixos-config/modules/system/devices/bluetooth/default.nix
2025-02-25 01:37:56 -05:00

14 lines
320 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.system.desktop.enable {
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
};
}