Did that not commit everything? Weird

This commit is contained in:
Lillian Violet 2024-01-18 11:59:33 +01:00
parent f3ad77abf0
commit ed65a762f2
3 changed files with 23 additions and 0 deletions

View file

@ -1,17 +0,0 @@
{
lib,
stdenv,
direnv,
writeShellApplication,
}:
writeShellApplication
{
name = "dvd";
runtimeInputs = [echo direnv];
text = ''
echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc
direnv allow
'';
}

View file

@ -1,17 +0,0 @@
{
lib,
stdenv,
direnv,
writeShellApplication,
}:
writeShellApplication
{
name = "dvt";
runtimeInputs = [direnv nix];
text = ''
nix flake init -t "github:the-nix-way/dev-templates#$1"
direnv allow
'';
}