💎 ruby configs

This commit is contained in:
James Walker 2021-05-02 16:31:49 -04:00
parent 9ac792d033
commit 7b1c89d8aa
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,7 @@
./modules/haskell.nix ./modules/haskell.nix
./modules/nodejs.nix ./modules/nodejs.nix
./modules/python.nix ./modules/python.nix
./modules/ruby.nix
./modules/rust.nix ./modules/rust.nix
]; ];

5
modules/ruby.nix Normal file
View File

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [ ruby_2_7 solargraph ];
}