diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-31 17:03:42 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-31 17:03:42 +0200 |
commit | c7564973ce0c8b70bbf2cf762cc51861395919b4 (patch) | |
tree | b662797f4579670aa63d90198d4ad692425ed6bc | |
parent | fix(modules/lf/commands): Avoid inheriting the path by default (diff) | |
download | nixos-config-c7564973ce0c8b70bbf2cf762cc51861395919b4.zip |
fix(modules/lf/commands): Add needed dependencies of the helpers.sh
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/lf/lf/commands/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix index aa78514f..6c21be12 100644 --- a/modules/by-name/lf/lf/commands/default.nix +++ b/modules/by-name/lf/lf/commands/default.nix @@ -7,7 +7,7 @@ pkgs.writeShellApplication { inherit name; text = builtins.readFile ./base.sh + builtins.readFile ./scripts/${name}.sh; - runtimeInputs = dependencies; + runtimeInputs = [pkgs.lf pkgs.mktemp] ++ dependencies; inheritPath = keepPath; } + "/bin/${name}"; |