8 lines
231 B
Nix
Raw Normal View History

2024-04-16 01:30:23 +02:00
{ config, lib, pkgs, ... }: {
2024-04-16 01:28:24 +02:00
config = lib.mkIf (config.syscfg.net.ble.enable) {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez bluez-tools ];
};
2023-11-04 02:28:27 +01:00
}