Files
DCGOS/modules/drivers/bluetooth.nix
2025-07-22 12:18:15 +08:00

17 lines
323 B
Nix

{
hostname,
lib,
...
}: let
inherit (import ../../hosts/${hostname}/env.nix) Bluetooth;
in
with lib; {
config = mkIf Bluetooth {
hardware.bluetooth = {
enable = lib.mkDefault true;
powerOnBoot = lib.mkDefault true;
};
services.blueman.enable = lib.mkDefault true;
};
}