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; [
cmake
nodejs
postgresql_14
(lib.lowPrio postgresql_14)
yarn
];
serviceGroups.server.services = {
@ -57,6 +57,6 @@
};
language.ruby = {
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 ];
};
}