27 lines
525 B
Nix
27 lines
525 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# https://devenv.sh/basics/
|
|
# env.GREET = "devenv";
|
|
|
|
# https://devenv.sh/packages/
|
|
packages = [ pkgs.git pkgs.git-bug ];
|
|
|
|
# enterShell = ''
|
|
# hello
|
|
# git --version
|
|
# '';
|
|
|
|
# https://devenv.sh/languages/
|
|
languages.rust.enable = true;
|
|
|
|
# https://devenv.sh/scripts/
|
|
# scripts.hello.exec = "echo hello from $GREET";
|
|
|
|
# https://devenv.sh/pre-commit-hooks/
|
|
pre-commit.hooks.shellcheck.enable = true;
|
|
|
|
# https://devenv.sh/processes/
|
|
# processes.ping.exec = "ping example.com";
|
|
}
|