17 lines
342 B
Nix
17 lines
342 B
Nix
{...}: {
|
|
config.flake.modules.nixos.bluetooth = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.azos.bluetooth.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
config = lib.mkIf config.azos.bluetooth.enable {
|
|
services.blueman.enable = true;
|
|
hardware.bluetooth.enable = true;
|
|
};
|
|
};
|
|
}
|