NixOS/system/modules/bluetooth.nix

14 lines
222 B
Nix

{ config, lib, ... }:
let
cfg = config.profile.bluetooth;
in
{
config = lib.mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
};
}