Files
nixos-config/modules/system/bluetooth.nix
2026-05-23 18:35:37 +02:00

11 lines
128 B
Nix

{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}