8 lines
156 B
Nix
8 lines
156 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
pulseaudio # for pactl and other tools
|
|
pavucontrol # GUI volume control with lots of options
|
|
];
|
|
}
|