nixos/modules/dev/ruby.nix

16 lines
254 B
Nix
Raw Permalink Normal View History

2025-06-20 11:59:24 -07:00
{ config, pkgs, ... }: {
config = {
home-manager.users.${config.user} = { pkgs, ... }: {
home.packages = with pkgs; [
ruby_3_4
#bundler
];
};
environment.variables = {
RUBY_VERSION = "3.4";
};
};
}