mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 19:54:36 +00:00
Add pulsemixer
This commit is contained in:
parent
1527b7f9b9
commit
7ab53d2654
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue