22 lines
377 B
Nix
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;
|
|
};
|
|
}
|
|
)
|
|
];
|
|
};
|
|
}
|