diff options
Diffstat (limited to 'home-manager/config/lf')
-rw-r--r-- | home-manager/config/lf/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/home-manager/config/lf/default.nix b/home-manager/config/lf/default.nix index 5d766b24..108378a1 100644 --- a/home-manager/config/lf/default.nix +++ b/home-manager/config/lf/default.nix @@ -9,7 +9,7 @@ dependencies, ... }: - sysLib.makeShellScriptWithLibrary { + sysLib.makeShellScriptWithLibraryAndKeepPath { name = "${builtins.baseNameOf file}"; script = file; dependencies = dependencies ++ (builtins.attrValues {inherit (pkgs) dash coreutils;}); @@ -134,7 +134,7 @@ in { fzf_jump = shell { file = ./cmds/fzf_jump; dependencies = builtins.attrValues { - inherit (pkgs) fzf; + inherit (pkgs) fzf lf gnused; }; }; help = shell { @@ -293,6 +293,7 @@ in { grp = "cd ~/repos/python"; grc = "cd ~/repos/c"; gra = "cd ~/repos/auto_hot_key"; + grn = "cd ~/repos/nix"; grt = "cd ~/repos/tex"; grs = "cd ~/repos/shell"; grch = "cd ~/repos/chroot"; |