add bluetooth
This commit is contained in:
parent
2ee20a2698
commit
0ee46291e8
3 changed files with 9 additions and 0 deletions
nixos/common
|
@ -5,6 +5,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
wireplumber.enable = true;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
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 = [
|
||||
./audio.nix
|
||||
./tailscale.nix
|
||||
./bluetooth.nix
|
||||
];
|
||||
|
||||
# use nix version 2.22
|
||||
|
|
Loading…
Add table
Reference in a new issue