about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-05-15 16:27:25 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-05-15 16:27:25 +0200
commit29fd61c784ca3ecb14e6a5a647ab8b738273142c (patch)
tree2a33a416cde3fe2e8937e9ba79c20e72091f3e72 /nixos
parentf4f9f960372443609b7157d7a540c2da593d1983 (diff)
nixos/tests/pretalx: test pages plugin install
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/web-apps/pretalx.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/tests/web-apps/pretalx.nix b/nixos/tests/web-apps/pretalx.nix
index 76e261b2207ec..cbb6580aa0515 100644
--- a/nixos/tests/web-apps/pretalx.nix
+++ b/nixos/tests/web-apps/pretalx.nix
@@ -5,13 +5,16 @@
   meta.maintainers = lib.teams.c3d2.members;
 
   nodes = {
-    pretalx = {
+    pretalx = { config, ... }: {
       networking.extraHosts = ''
         127.0.0.1 talks.local
       '';
 
       services.pretalx = {
         enable = true;
+        plugins = with config.services.pretalx.package.plugins; [
+          pages
+        ];
         nginx.domain = "talks.local";
         settings = {
           site.url = "http://talks.local";