setup bluetooth

This commit is contained in:
Markus Heurung 2024-08-13 12:48:34 +02:00
parent 76fb213492
commit 447d5c06b4
3 changed files with 16 additions and 2 deletions

View file

@ -23,6 +23,7 @@
_1password-gui
atkinson-hyperlegible
alacritty
blueman
brightnessctl
curl
darktable
@ -43,6 +44,7 @@
mpv
morgen
obsidian
pamixer
pavucontrol
powertop
qutebrowser

View file

@ -49,6 +49,17 @@
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.i2c.enable = true;
hardware = {
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
i2c.enable = true;
bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
};
}

View file

@ -50,6 +50,7 @@
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
# If you want to use JACK applications, uncomment this
# jack.enable = true;
};