nyx/modules/nixos/services/bluetooth.nix
2024-12-20 15:11:42 +02:00

11 lines
168 B
Nix

{
pkgs,
config,
...
}: {
hardware.bluetooth = {
enable = true;
settings = {General = {Experimental = true;};};
};
services.blueman.enable = true;
}