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

22 lines
377 B
Nix

{ ... }:
{
config.dendritic.features.bluetooth = {
nixosModules = [
(
{ lib, ... }:
{
services.blueman.enable = true;
hardware.bluetooth = {
enable = lib.mkForce true;
powerOnBoot = true;
};
services.upower = {
enable = true;
};
}
)
];
};
}