diff options
author | Soispha <soispha@vhack.eu> | 2024-02-23 20:57:23 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-23 21:18:31 +0100 |
commit | 1c1fde6d1ed88088d664211c35db2e4a2081655c (patch) | |
tree | f8a03377b355d4092a5d5aa1a91976a60cbfb375 /hm/soispha/pkgs/scripts.nix | |
parent | feat(hm/conf/lf): Start zathura on opening pdfs in lf (diff) | |
download | nixos-config-1c1fde6d1ed88088d664211c35db2e4a2081655c.zip |
fix(hm/pkgs/specific/neorg): Add missing '.sh' suffix
Diffstat (limited to 'hm/soispha/pkgs/scripts.nix')
-rw-r--r-- | hm/soispha/pkgs/scripts.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix index 75e3f88a..73dadc0a 100644 --- a/hm/soispha/pkgs/scripts.nix +++ b/hm/soispha/pkgs/scripts.nix @@ -190,18 +190,18 @@ name = "neorg"; keepPath = true; src = ./scripts/specific/neorg/sh; - baseName = "main"; + baseName = "main.sh"; cmdPrefix = "functions"; cmdNames = [ - "add" - "context" - "dmenu" - "f_start" - "f_stop" - "list" - "project" - "utils" - "workspace" + "add.sh" + "context.sh" + "dmenu.sh" + "f_start.sh" + "f_stop.sh" + "list.sh" + "project.sh" + "utils.sh" + "workspace.sh" ]; dependencies = with pkgs; [ cocogitto |