soraefir f966c944f9
All checks were successful
Nix Build / build-nixos (push) Successful in 4m35s
Fix BLE
2024-04-16 01:30:23 +02:00

8 lines
231 B
Nix

{ config, lib, pkgs, ... }: {
config = lib.mkIf (config.syscfg.net.ble.enable) {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez bluez-tools ];
};
}