Files
nixos-flake/nixosModules/bluetooth.nix
T
2026-01-12 10:16:59 +01:00

12 lines
181 B
Nix

{ pkgs, ... }:
{
# Enable Bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
environment.systemPackages = with pkgs; [
blueman
];
}