nix-dotfiles/modules/bluetooth.nix
2025-03-13 14:50:27 -06:00

17 lines
264 B
Nix

{ config, pkgs, lib, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
environment.systemPackages = with pkgs; [
blueman
];
}