all repos — archive/nixos-configuration @ 7b6b9247cde2aee34b09c738dcfa8966e0852d51

Superseded by nixfiles

Add audio configuration

Alan Pearce
commit

7b6b9247cde2aee34b09c738dcfa8966e0852d51

parent

057e1926729ababa1cc6533e6ff5b5e52575513d

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 + ]; +}