diff --git a/direnv/.direnvrc b/direnv/.direnvrc new file mode 100644 index 0000000..32f3e36 --- /dev/null +++ b/direnv/.direnvrc @@ -0,0 +1 @@ +source /run/current-system/sw/share/nix-direnv/direnvrc diff --git a/scripts/.local/share/scripts/project-init b/scripts/.local/share/scripts/project-init index 387ac6a..902c995 100755 --- a/scripts/.local/share/scripts/project-init +++ b/scripts/.local/share/scripts/project-init @@ -21,7 +21,7 @@ if [ "$type" = "git" ]; then mkdir src data git add ./* git commit -m "Initial commit" - lorri init + echo "use flake" >.envrc direnv allow elif [ "$type" = "remote-git" ]; then git init @@ -31,7 +31,7 @@ elif [ "$type" = "remote-git" ]; then mkdir src tests data git add ./* git commit -m "Initial commit" - lorri init + echo "use flake" >.envrc direnv allow elif [ "$type" = "doc" ]; then mkdir docs docs/assets @@ -39,7 +39,7 @@ elif [ "$type" = "doc" ]; then elif [ "$type" = "src" ]; then cp ~/Documents/IT/shell.nix . mkdir src data - lorri init + echo "use flake" >.envrc direnv allow else usage