default.nix seems to be a significant name

This commit is contained in:
Lillian Violet 2024-01-18 12:02:33 +01:00
parent e376176dc3
commit 31a8662f05
3 changed files with 6 additions and 0 deletions

17
pkgs/dvd/default.nix Normal file
View file

@ -0,0 +1,17 @@
{
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
'';
}