From 7ab53d2654922bf3d6994e276e14c57672b2f4e6 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 20 Jun 2024 23:17:47 +0200 Subject: [PATCH] Add pulsemixer --- system/shared/multimedia/sound/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/system/shared/multimedia/sound/default.nix b/system/shared/multimedia/sound/default.nix index 9e25e37..af213e9 100644 --- a/system/shared/multimedia/sound/default.nix +++ b/system/shared/multimedia/sound/default.nix @@ -1,5 +1,6 @@ { config, + pkgs, lib, ... }: let @@ -12,6 +13,13 @@ in { enable = mkDefault false; # this just enables ALSA, which we don't really care abouyt mediaKeys.enable = true; }; + + environment.systemPackages = with pkgs; [ + # TUI tool to manage sound devices & levels + # It's made for pulseaudio, but it will work with pipewire too since we + # run a compatibility layer for pulse + pulsemixer + ]; }; }