blob: d55eadeda13dccead8701d7c446c81e99467fa91 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ lib, config, ... }: {
options = {
bluetooth.enable = lib.mkEnableOption "enables bluetooth support";
};
config = {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
};
}
|