From 5dfb68916fb63f9833b0bb6b5359c63de7741287 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Mon, 23 Feb 2026 13:17:35 +1000 Subject: [PATCH] extend pipewire config --- configuration.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 07e0ed4..b245492 100644 --- a/configuration.nix +++ b/configuration.nix @@ -17,7 +17,13 @@ }) ]; }; - nix.settings.experimental-features = ["nix-command" "flakes"]; + nix.settings = { + experimental-features = [ + "nix-command" + "flakes" + ]; + download-buffer-size = 524288000; # 500 MiB + }; # Use the systemd-boot EFI boot loader. boot.loader = { @@ -75,11 +81,20 @@ libinput.enable = true; # Enable audio + # Multimedia Framework + # With backwards compatability for alsa/pulseaudio/jack pipewire = { enable = true; + wireplumber.enable = true; + + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; }; }; + security.rtkit.enable = true; # simplifies pipewire's life programs = { hyprland = {