diff options
author | ene <ene@sils.li> | 2023-03-21 16:57:48 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:57:48 +0100 |
commit | c57d891d0523bfacd3ec9a4d50e7c6fc53dfd674 (patch) | |
tree | db13bd2a57151918b7381e843c1f5fe0282685fd | |
parent | Style(bootstrap/install): Improve the msg output (diff) | |
download | nixos-config-c57d891d0523bfacd3ec9a4d50e7c6fc53dfd674.tar.gz nixos-config-c57d891d0523bfacd3ec9a4d50e7c6fc53dfd674.zip |
Fix(lib): Add 'dash' as default dependency
This is also fine because dash is used as the interpreter for shell scripts.
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix index 38301ea0..f368121a 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -4,7 +4,7 @@ ... }: let shellLibraryDeps = - builtins.attrValues {inherit (pkgs) mktemp;}; + builtins.attrValues {inherit (pkgs) mktemp dash;}; in { makeShellScriptWithLibrary = { dependencies, |