summaryrefslogtreecommitdiff
path: root/modules/root/bluetooth.nix
blob: 1f41c7e573af067e68e035f108da8a4dc7191e04 (plain)
1
2
3
4
5
6
7
8
9
10
{ lib, config, ... }: {
	options = {
		bluetooth.enable = lib.mkEnableOption "enables bluetooth support";
	};

	config = lib.mkIf config.bluetooth.enable {
		hardware.bluetooth.enable = true;
		services.blueman.enable = true;
	};
}