commit 0bf2e44d7d4d4b0394241537679116f2536ef97b
parent d2b17cea233356fd49d9f3c63c7b758f7d98b6d4
Author: Peter <peter@minskio.co.uk>
Date: Sat, 25 Oct 2025 09:56:24 +0100
Add pavucontrol to audio include
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/common/audio.nix b/common/audio.nix
@@ -1,4 +1,5 @@
-{
+{ pkgs, ... }: {
+
security.rtkit.enable = true;
services.pipewire = {
enable = true;
@@ -6,4 +7,7 @@
alsa.enable = true;
pulse.enable = true;
};
+
+ environment.systemPackages = with pkgs; [ pavucontrol ];
+
}