add bluetooth
This commit is contained in:
parent
2ee20a2698
commit
0ee46291e8
3 changed files with 9 additions and 0 deletions
|
@ -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
|
||||||
|
|
7
nixos/common/bluetooth.nix
Normal file
7
nixos/common/bluetooth.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }: {
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.blueman.enable = true;
|
||||||
|
}
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue