nixos-config/modules/nixos/bluetooth.nix
2024-07-10 01:28:20 +02:00

12 lines
265 B
Nix

{ config, lib, ... }:
{
options.myConfig.bluetooth.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.bluetooth.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
};
}