nix-dotfiles/modules/bluetooth.nix
2025-03-28 00:47:30 -06:00

18 lines
254 B
Nix

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