This commit is contained in:
2023-07-13 10:33:43 -04:00
commit 9195787f8b
16 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{ pkgs, ... }:
{
# https://devenv.sh/packages/
packages = [
pkgs.ruby_3_0
pkgs.rubyPackages_3_0.rubocop
];
# https://devenv.sh/scripts/
scripts.hello.exec = "echo hello from $GREET";
enterShell = ''
hello
git --version
'';
# https://devenv.sh/languages/
# languages.nix.enable = true;
# https://devenv.sh/pre-commit-hooks/
# pre-commit.hooks.shellcheck.enable = true;
# https://devenv.sh/processes/
# processes.ping.exec = "ping example.com";
# See full reference at https://devenv.sh/reference/options/
}