Files
nixy/nixos/bluetooth.nix
2025-07-16 19:51:05 +02:00

10 lines
213 B
Nix

# Bluetooth configuration for NixOS
{pkgs, ...}: {
environment.systemPackages = with pkgs; [blueman];
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}