devshell/shells/ruby.nix
2024-03-10 12:18:17 +05:30

11 lines
225 B
Nix

{ pkgs }: pkgs.mkShell {
buildInputs = with pkgs; [
ruby_3_2
postgresql_15
rubyPackages_3_2.rspec-core
];
shellHook = ''
export BUNDLE_HOME="$PWD/.nix/bundle"
export GEM_HOME="$PWD/.nix/gem"
'';
}