about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-11-11 20:42:10 +0200
committerGitHub <noreply@github.com>2023-11-11 20:42:10 +0200
commit0e8902941b7b054f8973fed9024e89f8c3cf4084 (patch)
treee7dfae25bad700a35f490292ac1904ac55a3ba30 /nixos/tests
parent881d3941c19edced79a15f5c08a9e58881613f18 (diff)
parent2fa56fcb3024dcdcc680493cb1d92628e214116a (diff)
downloadnixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar.gz
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar.bz2
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar.lz
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar.xz
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.tar.zst
nixlib-0e8902941b7b054f8973fed9024e89f8c3cf4084.zip
Merge pull request #266469 from ambroisie/fix-tandoor-recipes
tandoor-recipes: fix `django-allauth`
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/tandoor-recipes.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixos/tests/tandoor-recipes.nix b/nixos/tests/tandoor-recipes.nix
index 54456238fe63..f3369da99a05 100644
--- a/nixos/tests/tandoor-recipes.nix
+++ b/nixos/tests/tandoor-recipes.nix
@@ -3,33 +3,8 @@ import ./make-test-python.nix ({ lib, ... }: {
   meta.maintainers = with lib.maintainers; [ ambroisie ];
 
   nodes.machine = { pkgs, ... }: {
-    # Setup using Postgres
     services.tandoor-recipes = {
       enable = true;
-
-      extraConfig = {
-        DB_ENGINE = "django.db.backends.postgresql";
-        POSTGRES_HOST = "/run/postgresql";
-        POSTGRES_USER = "tandoor_recipes";
-        POSTGRES_DB = "tandoor_recipes";
-      };
-    };
-
-    services.postgresql = {
-      enable = true;
-      ensureDatabases = [ "tandoor_recipes" ];
-      ensureUsers = [
-        {
-          name = "tandoor_recipes";
-          ensurePermissions."DATABASE tandoor_recipes" = "ALL PRIVILEGES";
-        }
-      ];
-    };
-
-    systemd.services = {
-      tandoor-recipes = {
-        after = [ "postgresql.service" ];
-      };
     };
   };