12 lines
92 B
Nix
12 lines
92 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
enterShell = ''
|
|
git --version
|
|
'';
|
|
}
|