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;