From 7d9978424992a470194f27f9e73f95a8ca3f8f09 Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 20 Oct 2022 10:26:36 +0200 Subject: [PATCH] Change location of nix files in project-init --- scripts/.local/share/scripts/project-init | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scripts/.local/share/scripts/project-init b/scripts/.local/share/scripts/project-init index 2d99f36..4eee449 100755 --- a/scripts/.local/share/scripts/project-init +++ b/scripts/.local/share/scripts/project-init @@ -13,13 +13,14 @@ 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 + else + cp ~/Projects/devenv/shell.nix . fi - cp ~/Documents/IT/shell.nix . } git_initialization() { @@ -57,7 +58,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/LICENSE.md LICENSE.md copy_nix_files "flake" create_dir data create_dir src @@ -77,7 +78,7 @@ elif [ "$type" = "nix-ld" ]; then copy_nix_files "nix-ld" direnv_integration "nix" elif [ "$type" = "datasci" ]; then - copy_nix_files "nix" + copy_nix_files "datasci" create_dir data touch .project direnv_integration "nix"