added bluetooth and xremap and screenshots

This commit is contained in:
specCon18 2023-12-20 06:07:08 -05:00
parent 3449e5a858
commit 6baa7c361c
8 changed files with 371 additions and 15 deletions

View file

@ -1,13 +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;
{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;
}