diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-11 08:56:08 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-11 08:56:08 +0200 |
commit | 67d69df373aa23d10c0b8aef890227a691e1dad7 (patch) | |
tree | 1ccaef97c4814b2487d0f48480eb6b65b2740f88 /modules/by-name | |
parent | modules/xdg/xdpt: Use correct config file location (diff) | |
download | nixos-config-prime.zip |
modules/lf: Always ensure that the `shell` is present prime
Otherwise, in path reduced circumstances, `sh` might not be in PATH.
Diffstat (limited to 'modules/by-name')
-rw-r--r-- | modules/by-name/lf/lf/module.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/module.nix b/modules/by-name/lf/lf/module.nix index 6dc8e919..ae1534d0 100644 --- a/modules/by-name/lf/lf/module.nix +++ b/modules/by-name/lf/lf/module.nix @@ -75,7 +75,7 @@ in { icons = true; ifs = "\\n"; # internal field separator for shell commands #info = "size"; # show the size of a directory - shell = "sh"; + shell = "${lib.getExe pkgs.dash}"; shellopts = "-eu"; # e: exit on error; u: error for unset variables }; extraConfig = '' |