From b7906922af4dc39ee8585651e52a71490c7ab9cf Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 23 Mar 2024 12:43:13 +0100 Subject: [PATCH] shells: Fix ordering of env variables in gamification shell --- shells/gamification2.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shells/gamification2.nix b/shells/gamification2.nix index ce42bb80..7adb8893 100644 --- a/shells/gamification2.nix +++ b/shells/gamification2.nix @@ -2,8 +2,8 @@ name = "Gamification 2"; imports = [ "${inputs.devshell}/extra/language/ruby.nix" ]; env = [ - { name = "DATABASE_HOST"; eval = "$PGDATA"; } { name = "PGDATA"; eval = "$PRJ_DATA_DIR/postgres"; } + { name = "DATABASE_HOST"; eval = "$PGDATA"; } ]; commands = [ {