nix-dotfiles/hosts/modules/bluetooth.nix
2025-06-30 21:21:44 -06:00

15 lines
248 B
Nix

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