aboutsummaryrefslogtreecommitdiff
path: root/nixos/tests
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-09 22:14:03 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-09-10 09:15:32 -0400
commit0eb814ea883843f53eb2bd1451596231420bf10c (patch)
tree3336ff0484ffb15c1a895b48fd82a00603bc1f3f /nixos/tests
parent17877eaa682407e613429e97cbf28f0297fb2e7d (diff)
nixosTests.xfce: fix test by enabling sound
Same issue as f59b4cb8d545d3bb1bd954f9e3267cb7ebec3557
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/xfce.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/xfce.nix b/nixos/tests/xfce.nix
index 12d8a050d47..6e003d51460 100644
--- a/nixos/tests/xfce.nix
+++ b/nixos/tests/xfce.nix
@@ -17,6 +17,8 @@ import ./make-test.nix ({ pkgs, ...} : {
services.xserver.desktopManager.xfce.enable = true;
environment.systemPackages = [ pkgs.xorg.xmessage ];
+
+ hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then
};
testScript =