nix-config/modules/nixos/bluetooth.nix
2026-04-15 18:26:05 -04:00

17 lines
253 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.bluetooth.enable {
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.upower = {
enable = true;
};
};
}