Files
nixos/modules/hardware/bluetooth.nix
T

9 lines
200 B
Nix

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