init devenv

This commit is contained in:
2025-07-29 22:09:08 -04:00
commit cc0bb000f2
5 changed files with 145 additions and 0 deletions

11
devenv.nix Normal file
View File

@@ -0,0 +1,11 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
enterShell = ''
git --version
'';
}