18 lines
251 B
Nix
18 lines
251 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
direnv,
|
|
writeShellApplication,
|
|
}:
|
|
stdenv.writeShellApplication
|
|
{
|
|
name = "dvd";
|
|
|
|
runtimeInputs = [echo direnv];
|
|
|
|
text = ''
|
|
echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc
|
|
direnv allow
|
|
'';
|
|
}
|