24 lines
494 B
Nix
24 lines
494 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
features = config.systemModules.hardware.features;
|
|
inherit (lib) mkIf;
|
|
inherit (builtins) elem;
|
|
in
|
|
|
|
{
|
|
config = mkIf (elem "bluetooth" features) {
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluez5-experimental;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
live-buds-cli
|
|
bluetuith
|
|
];
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/114222
|
|
systemd.user.services.telephony_client.enable = false;
|
|
};
|
|
}
|