add bluetooth

This commit is contained in:
Aditya 2024-04-10 22:57:06 +05:30
parent 157e7143dc
commit 97bd1adc9e
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 12 additions and 9 deletions

View file

@ -16,15 +16,6 @@
];
# Enable Bluetooth
hardware.bluetooth = {
enable = true;
settings = {
General = {
Experimental = "true";
Enable = "Source,Sink,Media,Socket";
};
};
};
# Allow non-free firmware
hardware.firmware = with pkgs; [firmwareLinuxNonfree];

View file

@ -0,0 +1,11 @@
_: {
hardware.bluetooth = {
enable = true;
settings = {
General = {
Experimental = "true";
Enable = "Source,Sink,Media,Socket";
};
};
};
}

View file

@ -1,5 +1,6 @@
{lib, ...}: {
imports = [
./bluetooth
./bootloader
./filesystem
./kernel