diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-31 17:09:08 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-31 17:09:08 +0200 |
commit | cdfa812d7a173bd7e1f1df78b9ed1f2c82eb4b91 (patch) | |
tree | cb9bcaf046cf0ffb1ab73caf0cf19d88b5ea0500 | |
parent | fix(modules/lf/commands): Add needed dependencies of the helpers.sh (diff) | |
download | nixos-config-cdfa812d7a173bd7e1f1df78b9ed1f2c82eb4b91.zip |
fix(modules/lf/commands): Also include a coreutils implementation prime
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 6c21be12..90b333c6 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 = [pkgs.lf pkgs.mktemp] ++ dependencies; + runtimeInputs = [pkgs.lf pkgs.mktemp pkgs.coreutils] ++ dependencies; inheritPath = keepPath; } + "/bin/${name}"; |