More opt
Some checks failed
Nix Build / build-nixos (push) Failing after 21s

This commit is contained in:
soraefir
2024-04-16 01:28:24 +02:00
parent e0b1be56a2
commit a1c6b056e0
8 changed files with 94 additions and 75 deletions

View File

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