about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 17:03:42 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 17:03:42 +0200
commitc7564973ce0c8b70bbf2cf762cc51861395919b4 (patch)
treeb662797f4579670aa63d90198d4ad692425ed6bc
parentfix(modules/lf/commands): Avoid inheriting the path by default (diff)
downloadnixos-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.nix2
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}";