nixos/modules/hardware/default.nix
2023-07-15 22:45:35 +08:00

9 lines
243 B
Nix

inputs:
{
options.nixos.hardware = let inherit (inputs.lib) mkOption types; in
{
bluetooth.enable = mkOption { type = types.bool; default = false; };
};
config.hardware.bluetooth.enable = inputs.config.nixos.hardware.bluetooth.enable;
}