nixos/modules/dev/ruby.nix
2025-06-20 11:59:24 -07:00

15 lines
254 B
Nix

{ config, pkgs, ... }: {
config = {
home-manager.users.${config.user} = { pkgs, ... }: {
home.packages = with pkgs; [
ruby_3_4
#bundler
];
};
environment.variables = {
RUBY_VERSION = "3.4";
};
};
}