Files
nix-config/hosts/thor/bluetooth.nix

23 lines
305 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
};
};
};
services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez ];
}