aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/lf
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-01 00:02:13 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-01 00:02:13 +0200
commit1203d4566c0aa0401704c7f9027c175e8bcba95b (patch)
tree6d13176fc64e960f54451b3d8767a981a7363755 /modules/by-name/lf
parentmodules/boot: Add a `root=` argument to the tails live ISO boot entry (diff)
downloadnixos-config-1203d4566c0aa0401704c7f9027c175e8bcba95b.zip
modules/lf/command: Add required `sed` dependency
That was unsatisfied since I added the `lf_cmd` argument escaping.
Diffstat (limited to 'modules/by-name/lf')
-rw-r--r--modules/by-name/lf/lf/commands/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix
index e8230556..ae02c45b 100644
--- a/modules/by-name/lf/lf/commands/default.nix
+++ b/modules/by-name/lf/lf/commands/default.nix
@@ -16,7 +16,14 @@
pkgs.writeShellApplication {
inherit name;
text = builtins.readFile ./base.sh + builtins.readFile ./scripts/${name}.sh;
- runtimeInputs = [pkgs.lf pkgs.mktemp pkgs.coreutils] ++ dependencies;
+ runtimeInputs =
+ [
+ pkgs.lf
+ pkgs.mktemp
+ pkgs.coreutils
+ pkgs.gnused
+ ]
+ ++ dependencies;
inheritPath = keepPath;
}
+ "/bin/${name}";