From 17877eaa682407e613429e97cbf28f0297fb2e7d Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 9 Sep 2019 22:13:06 -0400 Subject: [PATCH 1/5] nixosTests.xfce4-14: fix test by enabling sound Same issue as f59b4cb8d545d3bb1bd954f9e3267cb7ebec3557 --- nixos/tests/xfce4-14.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/xfce4-14.nix b/nixos/tests/xfce4-14.nix index d9b10aabaa1..9dfedc6fbb9 100644 --- a/nixos/tests/xfce4-14.nix +++ b/nixos/tests/xfce4-14.nix @@ -12,6 +12,8 @@ import ./make-test.nix ({ pkgs, ...} : { services.xserver.displayManager.auto.user = "alice"; services.xserver.desktopManager.xfce4-14.enable = true; + + hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then }; testScript = From 0eb814ea883843f53eb2bd1451596231420bf10c Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 9 Sep 2019 22:14:03 -0400 Subject: [PATCH 2/5] nixosTests.xfce: fix test by enabling sound Same issue as f59b4cb8d545d3bb1bd954f9e3267cb7ebec3557 --- nixos/tests/xfce.nix | 2 ++ 1 file changed, 2 insertions(+) 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 = From bbcc947c46f88d419f6563d646bc7dd805b3f14c Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 9 Sep 2019 22:17:18 -0400 Subject: [PATCH 3/5] nixosTests.plasma5: fix test by enabling sound Same issue as f59b4cb8d545d3bb1bd954f9e3267cb7ebec3557 --- nixos/tests/plasma5.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/plasma5.nix b/nixos/tests/plasma5.nix index 788c8719c8d..88d4ff33436 100644 --- a/nixos/tests/plasma5.nix +++ b/nixos/tests/plasma5.nix @@ -30,6 +30,7 @@ import ./make-test.nix ({ pkgs, ...} : enable = true; user = "alice"; }; + hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then virtualisation.memorySize = 1024; environment.systemPackages = [ sddm_theme ]; }; From baf36d9afa08c7ba4187fc4507786fd372b7a781 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 9 Sep 2019 22:17:45 -0400 Subject: [PATCH 4/5] nixosTests.xfce: bump memorySize --- nixos/tests/xfce.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/xfce.nix b/nixos/tests/xfce.nix index 6e003d51460..6cb4fae2021 100644 --- a/nixos/tests/xfce.nix +++ b/nixos/tests/xfce.nix @@ -19,6 +19,8 @@ import ./make-test.nix ({ pkgs, ...} : { 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 + + virtualisation.memorySize = 1024; }; testScript = From 20f8c3b984dbd5b12c17e3f97a9bab5340092102 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 9 Sep 2019 22:18:08 -0400 Subject: [PATCH 5/5] nixosTests.xfce4-14: bump memorySize --- nixos/tests/xfce4-14.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/xfce4-14.nix b/nixos/tests/xfce4-14.nix index 9dfedc6fbb9..94378f0c8d3 100644 --- a/nixos/tests/xfce4-14.nix +++ b/nixos/tests/xfce4-14.nix @@ -14,6 +14,8 @@ import ./make-test.nix ({ pkgs, ...} : { services.xserver.desktopManager.xfce4-14.enable = true; hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then + + virtualisation.memorySize = 1024; }; testScript =