Files
nixos/modules/nixos/bluetooth.nix
T

11 lines
150 B
Nix

{
pkgs,
...
}:
{
hardware.bluetooth.enable = true;
environment.systemPackages = with pkgs; [
blueman # GTK-based Bluetooth Manager
];
}