From 17465544df1aa8fd41710ec5ea776113c0958aa1 Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 30 Nov 2022 15:08:48 +0100 Subject: [PATCH] Copy nix files on init action in project-init --- scripts/.local/share/scripts/project-init | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/.local/share/scripts/project-init b/scripts/.local/share/scripts/project-init index 7995d20..836d397 100755 --- a/scripts/.local/share/scripts/project-init +++ b/scripts/.local/share/scripts/project-init @@ -52,11 +52,11 @@ fi type=$1 if [ "$type" = "git" ]; then - copy_nix_files "flake" + copy_nix_files "nix" create_dir data create_dir src git_initialization - direnv_integration "flake" + direnv_integration "nix" elif [ "$type" = "remote-git" ]; then touch README.org cp ~/Projects/devenv/LICENSE.md LICENSE.md @@ -77,6 +77,7 @@ elif [ "$type" = "src" ]; then direnv_integration "nix" elif [ "$type" = "init" ]; then touch .project + copy_nix_files "nix" direnv_integration "nix" elif [ "$type" = "nix-ld" ]; then copy_nix_files "nix-ld"