nix-dotfiles/modules/bluetooth.nix
2025-03-31 16:39:56 -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
];
}