added bluetooth support and qutebrowser

qutebrowser wasn't the one messing up with a weird dependency
This commit is contained in:
chloe 2025-09-28 20:50:48 +02:00
parent c53fbd3514
commit b4aad0c151
2 changed files with 24 additions and 0 deletions

View file

@ -135,6 +135,29 @@
};
};
hardware.bluetooth = {
enable = true;
powerOnBoot = true; # powers up the default Bluetooth controller on boot
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
services.blueman.enable = true;
# rtkit (optional, recommended) allows Pipewire to use the realtime scheduler for increased performance.
security.rtkit.enable = true;
services.pipewire = {
enable = true; # if not already enabled
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment the following
#jack.enable = true;
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -9,6 +9,7 @@
signal-desktop
cider-2
iamb
qutebrowser
];
virtualisation.containers.enable = true;