diff options
author | Soispha <soispha@vhack.eu> | 2023-10-20 23:23:22 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-20 23:23:22 +0200 |
commit | c762f02428b084b638f0c26c563ad4a705493290 (patch) | |
tree | d0c9657cb1ab84c71581dfe17daa948986e6b63e /hm/soispha/pkgs | |
parent | chore(hm/soispha/conf/taskwarrior/projects): Update (diff) | |
download | nixos-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.nix | 5 |
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; |