nixos-config/modules/system/devices/bluetooth/default.nix

14 lines
337 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf (builtins.elem "pc" config.system.nixos.tags) {
hardware.bluetooth = {
enable = true;
settings = {
General.Experimental = "true";
Policy.AutoEnable = "true";
};
};
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
};
}