From b4aad0c1510d4c121f85f94e9d1dbafcf1e04fd3 Mon Sep 17 00:00:00 2001 From: misschloe777 Date: Sun, 28 Sep 2025 20:50:48 +0200 Subject: [PATCH] added bluetooth support and qutebrowser qutebrowser wasn't the one messing up with a weird dependency --- hosts/buldak/configuration.nix | 23 +++++++++++++++++++++++ hosts/buldak/features/software.nix | 1 + 2 files changed, 24 insertions(+) diff --git a/hosts/buldak/configuration.nix b/hosts/buldak/configuration.nix index 3b89372..943f438 100644 --- a/hosts/buldak/configuration.nix +++ b/hosts/buldak/configuration.nix @@ -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. It‘s perfectly fine and recommended to leave diff --git a/hosts/buldak/features/software.nix b/hosts/buldak/features/software.nix index 24b833c..138d144 100644 --- a/hosts/buldak/features/software.nix +++ b/hosts/buldak/features/software.nix @@ -9,6 +9,7 @@ signal-desktop cider-2 iamb + qutebrowser ]; virtualisation.containers.enable = true;