add ruby shell
This commit is contained in:
parent
1d6186d642
commit
29d1d225a7
2 changed files with 6 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
|||
java = import ./shells/java.nix { inherit pkgs; };
|
||||
node = import ./shells/node.nix { inherit pkgs; };
|
||||
python = import ./shells/python.nix { inherit pkgs; };
|
||||
ruby = import ./shells/ruby.nix { inherit pkgs; };
|
||||
rust = import ./shells/rust.nix { inherit pkgs; };
|
||||
};
|
||||
}
|
||||
|
|
5
shells/ruby.nix
Normal file
5
shells/ruby.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs }: pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
ruby_3_2
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue