devshell/shells/ruby.nix

10 lines
194 B
Nix

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