nix-dotfiles/modules/bluetooth.nix
2025-03-17 16:10:17 -06:00

20 lines
271 B
Nix

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