Change location of nix files in project-init
This commit is contained in:
parent
e66228c107
commit
7a33bc6823
|
@ -13,13 +13,13 @@ usage() {
|
|||
|
||||
copy_nix_files() {
|
||||
if [ "$1" = "flake" ]; then
|
||||
cp ~/Documents/IT/flake-template.nix flake.nix
|
||||
cp ~/Projects/devenv/flake-template.nix flake.nix
|
||||
elif [ "$1" = "nix-ld" ]; then
|
||||
cp ~/Documents/IT/nix-ld.nix shell.nix
|
||||
cp ~/Projects/devenv/nix-ld.nix shell.nix
|
||||
elif [ "$1" = "datasci" ]; then
|
||||
cp ~/Projects/devenv/python-data-science.nix shell.nix
|
||||
fi
|
||||
cp ~/Documents/IT/shell.nix .
|
||||
cp ~/Projects/devenv/shell.nix .
|
||||
}
|
||||
|
||||
git_initialization() {
|
||||
|
@ -57,7 +57,7 @@ if [ "$type" = "git" ]; then
|
|||
direnv_integration "flake"
|
||||
elif [ "$type" = "remote-git" ]; then
|
||||
touch README.org
|
||||
cp ~/Documents/IT/gpl-3.0.md LICENSE.md
|
||||
cp ~/Projects/devenv/gpl-3.0.md LICENSE.md
|
||||
copy_nix_files "flake"
|
||||
create_dir data
|
||||
create_dir src
|
||||
|
|
Loading…
Reference in New Issue