add bluetooth

This commit is contained in:
insects 2024-08-13 13:08:35 +02:00
parent 2ee20a2698
commit 0ee46291e8
3 changed files with 9 additions and 0 deletions

View file

@ -5,6 +5,7 @@
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
wireplumber.enable = true;
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
pavucontrol pavucontrol

View file

@ -0,0 +1,7 @@
{ ... }: {
hardware.bluetooth = {
enable = true;
};
services.blueman.enable = true;
}

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./audio.nix ./audio.nix
./tailscale.nix ./tailscale.nix
./bluetooth.nix
]; ];
# use nix version 2.22 # use nix version 2.22