From 43cad053a6cc11c2e2cff383367064aea8797b4d Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 25 Mar 2021 01:16:47 +0100 Subject: [PATCH] Add missing src option to project-init script --- scripts/.local/share/scripts/project-init | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/.local/share/scripts/project-init b/scripts/.local/share/scripts/project-init index b146a68..387ac6a 100755 --- a/scripts/.local/share/scripts/project-init +++ b/scripts/.local/share/scripts/project-init @@ -36,6 +36,11 @@ elif [ "$type" = "remote-git" ]; then elif [ "$type" = "doc" ]; then mkdir docs docs/assets touch docs/Summary.org +elif [ "$type" = "src" ]; then + cp ~/Documents/IT/shell.nix . + mkdir src data + lorri init + direnv allow else usage fi