nyx/modules/nixos/services/bluetooth.nix

7 lines
166 B
Nix

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