Adds some audio utilities

This commit is contained in:
2025-02-01 17:22:56 -08:00
parent 6adffaf87b
commit 6a823e8216
3 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
pulseaudio # for pactl and other tools
pavucontrol # GUI volume control with lots of options
];
}