added bluetooth support

This commit is contained in:
Steven 2023-10-16 01:34:40 -04:00
parent 52992924a7
commit 3449e5a858
3 changed files with 15 additions and 0 deletions

0
extract.sh Executable file → Normal file
View file

View file

@ -0,0 +1,13 @@
{config, pkgs, }:
{
hardware.bluetooth = {
enable = true; # enables support for Bluetooth
powerOnBoot = true; # powers up the default Bluetooth controller on boot
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
services.blueman.enable = true;
}

View file

@ -1,6 +1,8 @@
{ modulesPath, config, pkgs, lib, self, ... }:
{
environment.systemPackages = with pkgs; [
bluez
blueman
nerdfonts
pkg-config
ripgrep