Add audio configuration
1 file changed, 12 insertions(+), 0 deletions(-)
changed files
A modules/audio.nix
@@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ hardware.pulseaudio = { + enable = true; + support32Bit = true; + }; + + environment.systemPackages = with pkgs; [ + pamixer + pavucontrol + ]; +}