Files
Nixos/modules/system/nixos/networks/bluetooth.nix
T

16 lines
241 B
Nix

{ lib, config, ... }:
with lib;
let
cfg = config.os.bluetooth;
in
{
options.os.bluetooth = {
enable = mkEnableOption "System networks manager service";
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}