soraefir a1c6b056e0
Some checks failed
Nix Build / build-nixos (push) Failing after 21s
More opt
2024-04-16 01:28:24 +02:00

8 lines
218 B
Nix

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