grimm-nixos-laptop/common/network/bluetooth.nix
2025-01-03 15:57:36 +01:00

21 lines
363 B
Nix

{
pkgs,
config,
lib,
...
}:
let
inherit (config.grimmShared)
enable
network
graphical
sound
;
in
{
config = lib.mkIf (enable && network && config.hardware.bluetooth.enable) {
services.blueman.enable = lib.mkIf graphical true;
environment.systemPackages = [ pkgs.bluetuith ] ++ lib.optional sound.enable pkgs.bluez;
};
}