dotfiles/modules/ruby.nix

8 lines
146 B
Nix
Raw Normal View History

2021-05-02 16:31:49 -04:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [ ruby_2_7 solargraph ];
2021-06-07 23:00:22 -04:00
programs.zsh.oh-my-zsh.plugins = [ "bundler" "rails" ];
2021-05-02 16:31:49 -04:00
}