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