config.nix/modules/system/bluetooth.nix
2026-04-11 17:21:28 +02:00

13 lines
114 B
Nix

{
config,
lib,
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
bluez
bluetuith
];
}