summary refs log tree commit diff
path: root/nixos/tests/installed-tests
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-04-27 10:24:56 +0200
committertalyz <kim.lindberger@gmail.com>2021-04-27 12:41:35 +0200
commit6edd10201308a454f6145febc1b38317592ab7a3 (patch)
tree6b5105c30774c010af68b3cb8dd8fe325cfbc4a7 /nixos/tests/installed-tests
parent24320ba1ddafa08714d17619c6d84f6f144da8bc (diff)
downloadnixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar.gz
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar.bz2
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar.lz
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar.xz
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.tar.zst
nixpkgs-6edd10201308a454f6145febc1b38317592ab7a3.zip
pipewire: Fix tests
Diffstat (limited to 'nixos/tests/installed-tests')
-rw-r--r--nixos/tests/installed-tests/pipewire.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/tests/installed-tests/pipewire.nix b/nixos/tests/installed-tests/pipewire.nix
index f4154b5d2fd..b04265658fc 100644
--- a/nixos/tests/installed-tests/pipewire.nix
+++ b/nixos/tests/installed-tests/pipewire.nix
@@ -2,4 +2,14 @@
 
 makeInstalledTest {
   tested = pkgs.pipewire;
+  testConfig = {
+    hardware.pulseaudio.enable = false;
+    services.pipewire = {
+      enable = true;
+      pulse.enable = true;
+      jack.enable = true;
+      alsa.enable = true;
+      alsa.support32Bit = true;
+    };
+  };
 }