diff --git a/options/common/dash.nix b/options/common/dash.nix index 94399e5..8abda34 100644 --- a/options/common/dash.nix +++ b/options/common/dash.nix @@ -1,6 +1,9 @@ { + lib, pkgs, ... -}: { - users.defaultUserShell = pkgs.dash; +}: let + inherit (lib) getExe; +in { + environment.binsh = getExe pkgs.dash; }