From 28ccec970435f9acfdecfae95848947c8b751e09 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Fri, 27 Mar 2020 23:32:13 -0400 Subject: Initial commit It begins... --- system/modules/sound.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 system/modules/sound.nix (limited to 'system/modules/sound.nix') diff --git a/system/modules/sound.nix b/system/modules/sound.nix new file mode 100644 index 0000000000..0d5ce3e318 --- /dev/null +++ b/system/modules/sound.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: +{ + # Enable sound. + sound.enable = true; + hardware.pulseaudio.enable = true; + nixpkgs.config.pulseaudio = true; + + environment.systemPackages = with pkgs; [ + pulseaudio-ctl + paprefs + pasystray + pavucontrol + ]; +} -- cgit 1.4.1