aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/pkgs
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-20 23:23:22 +0200
committerSoispha <soispha@vhack.eu>2023-10-20 23:23:22 +0200
commitc762f02428b084b638f0c26c563ad4a705493290 (patch)
treed0c9657cb1ab84c71581dfe17daa948986e6b63e /hm/soispha/pkgs
parentchore(hm/soispha/conf/taskwarrior/projects): Update (diff)
downloadnixos-config-c762f02428b084b638f0c26c563ad4a705493290.zip
fix(hm/pkgs/scr/neorg): Add cocogitto and git-crypt as dependencies
These are normally supplied by the devshell, but we can't load that in a script. Thus, we simply define these as dependencies
Diffstat (limited to 'hm/soispha/pkgs')
-rw-r--r--hm/soispha/pkgs/scripts.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix
index b65752a6..a5c7655d 100644
--- a/hm/soispha/pkgs/scripts.nix
+++ b/hm/soispha/pkgs/scripts.nix
@@ -48,7 +48,10 @@
neorg-scr = sysLib.writeShellScriptWithLibraryAndKeepPath {
name = "neorg";
src = ./scripts/wrappers/neorg;
- dependencies = [];
+ dependencies = with pkgs; [
+ cocogitto
+ git-crypt
+ ];
replacementStrings = {
DEFAULT_NEORG_PROJECT_DIR =
config.programs.nixvim.plugins.neorg.modules."core.dirman".config.workspaces.projects;