cros-pulse-config: load audio source module

When using the --enable-audio-capture flag with crostini, capturing
audio through pulseaudio still doesn't work, since we haven't loaded the
proper capture source module. Add that module to the .service file so
that audio works properly through pulseaudio in addition to directly
through ALSA.

Increment version to 0.1.2.

BUG=chromium:1039354
TEST=aplay/arecord in crostini both with and without --enable-audio-capture

Change-Id: Ia816693e6fca5744db85a57dbbf7a78a907c5862
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/containers/cros-container-guest-tools/+/2128270
Tested-by: Fletcher Woodruff <fletcherw@chromium.org>
Reviewed-by: Stephen Barber <smbarber@chromium.org>
Reviewed-by: Chih-Yang Hsia <paulhsia@chromium.org>
Commit-Queue: Fletcher Woodruff <fletcherw@chromium.org>
diff --git a/cros-pulse-config/BUILD b/cros-pulse-config/BUILD
index 78911ec..b1a1441 100644
--- a/cros-pulse-config/BUILD
+++ b/cros-pulse-config/BUILD
@@ -31,6 +31,6 @@
     maintainer = "The Chromium OS Authors <chromium-os-dev@chromium.org>",
     package = "cros-pulse-config",
     section = "misc",
-    version = "0.1.1",
+    version = "0.1.2",
     visibility = ["//cros-debs:__pkg__"],
 )
diff --git a/cros-pulse-config/cros-pulse-config.service b/cros-pulse-config/cros-pulse-config.service
index 0626430..9eadb91 100644
--- a/cros-pulse-config/cros-pulse-config.service
+++ b/cros-pulse-config/cros-pulse-config.service
@@ -6,6 +6,7 @@
 [Service]
 Type=oneshot
 ExecStart=/usr/bin/pacmd load-module module-alsa-sink device=hw:0,0 tsched=0
+ExecStart=/usr/bin/pacmd load-module module-alsa-source device=hw:0,0 tsched=0
 RemainAfterExit=true
 
 [Install]