Add pulsemixer

This commit is contained in:
ItsDrike 2024-06-20 23:17:47 +02:00
parent 1527b7f9b9
commit 7ab53d2654
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -1,5 +1,6 @@
{ {
config, config,
pkgs,
lib, lib,
... ...
}: let }: let
@ -12,6 +13,13 @@ in {
enable = mkDefault false; # this just enables ALSA, which we don't really care abouyt enable = mkDefault false; # this just enables ALSA, which we don't really care abouyt
mediaKeys.enable = true; 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
];
}; };
} }