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 = {