From 67e324107e05f3245ddac034607afd0e1dea478f Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 30 Mar 2026 20:46:26 +0200 Subject: Refactored the entire configuration --- system/audio.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 system/audio.nix (limited to 'system/audio.nix') diff --git a/system/audio.nix b/system/audio.nix new file mode 100644 index 0000000..80dd60b --- /dev/null +++ b/system/audio.nix @@ -0,0 +1,15 @@ +{pkgs, ...}: { + security.rtkit.enable = true; + + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; + }; + + environment.systemPackages = with pkgs; [ + pavucontrol + ]; +} -- cgit v1.2.3