summary refs log tree commit diff
path: root/nixos/tests/nextcloud/default.nix
diff options
context:
space:
mode:
authorstuebinm <stuebinm@disroot.org>2021-08-01 20:43:01 +0200
committerstuebinm <stuebinm@disroot.org>2021-08-01 20:45:24 +0200
commit64e943d4a2d6089bce18c7635b546edeba297278 (patch)
tree2f98d4548e743beceb072ccf14cae01cda201d06 /nixos/tests/nextcloud/default.nix
parent164f8c9457180e50db0c97aaa54cda46d6bdf97f (diff)
downloadnixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar.gz
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar.bz2
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar.lz
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar.xz
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.tar.zst
nixpkgs-64e943d4a2d6089bce18c7635b546edeba297278.zip
nixos/nextcloud: test for secretFile option
This is a dummy test that doesn't do much — the secretFile option is
just used to set the database type to postgres; otherwise this is an
exact copy of the with-postgresql-and-redis.nix test, though with the
redis components removed.
Diffstat (limited to 'nixos/tests/nextcloud/default.nix')
-rw-r--r--nixos/tests/nextcloud/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/nextcloud/default.nix b/nixos/tests/nextcloud/default.nix
index e4c7a70606c..0e3f693674c 100644
--- a/nixos/tests/nextcloud/default.nix
+++ b/nixos/tests/nextcloud/default.nix
@@ -6,4 +6,6 @@
   basic = import ./basic.nix { inherit system pkgs; };
   with-postgresql-and-redis = import ./with-postgresql-and-redis.nix { inherit system pkgs; };
   with-mysql-and-memcached = import ./with-mysql-and-memcached.nix { inherit system pkgs; };
+  with-declarative-redis = import ./with-declarative-redis.nix {inherit system pkgs; };
+  with-secrets = import ./with-secrets.nix {inherit system pkgs; };
 }