Copy nix files on init action in project-init
This commit is contained in:
parent
36cffdcd00
commit
7669aabdeb
|
@ -52,11 +52,11 @@ fi
|
||||||
type=$1
|
type=$1
|
||||||
|
|
||||||
if [ "$type" = "git" ]; then
|
if [ "$type" = "git" ]; then
|
||||||
copy_nix_files "flake"
|
copy_nix_files "nix"
|
||||||
create_dir data
|
create_dir data
|
||||||
create_dir src
|
create_dir src
|
||||||
git_initialization
|
git_initialization
|
||||||
direnv_integration "flake"
|
direnv_integration "nix"
|
||||||
elif [ "$type" = "remote-git" ]; then
|
elif [ "$type" = "remote-git" ]; then
|
||||||
touch README.org
|
touch README.org
|
||||||
cp ~/Projects/devenv/LICENSE.md LICENSE.md
|
cp ~/Projects/devenv/LICENSE.md LICENSE.md
|
||||||
|
@ -77,6 +77,9 @@ elif [ "$type" = "src" ]; then
|
||||||
direnv_integration "nix"
|
direnv_integration "nix"
|
||||||
elif [ "$type" = "init" ]; then
|
elif [ "$type" = "init" ]; then
|
||||||
touch .project
|
touch .project
|
||||||
|
if [ ! -f shell.nix ]; then
|
||||||
|
copy_nix_files "nix"
|
||||||
|
fi
|
||||||
direnv_integration "nix"
|
direnv_integration "nix"
|
||||||
elif [ "$type" = "nix-ld" ]; then
|
elif [ "$type" = "nix-ld" ]; then
|
||||||
copy_nix_files "nix-ld"
|
copy_nix_files "nix-ld"
|
||||||
|
|
Loading…
Reference in New Issue