shells: fix gamification2 shell

This commit is contained in:
Charlotte Van Petegem 2024-11-09 11:53:41 +01:00
parent 996bf3463e
commit f89532a63b
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -48,7 +48,7 @@
packages = with pkgs; [ packages = with pkgs; [
cmake cmake
nodejs nodejs
postgresql_14 (lib.lowPrio postgresql_14)
yarn yarn
]; ];
serviceGroups.server.services = { serviceGroups.server.services = {
@ -57,6 +57,6 @@
}; };
language.ruby = { language.ruby = {
package = pkgs.ruby_3_3; package = pkgs.ruby_3_3;
nativeDeps = [ pkgs.sqlite pkgs.libmysqlclient pkgs.zlib pkgs.openssl pkgs.libyaml ]; nativeDeps = [ pkgs.postgresql_14 pkgs.zlib pkgs.openssl pkgs.libyaml ];
}; };
} }