From 88f71c5e6723afec13feac9c4108206e8247ebb7 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Sat, 13 Jul 2024 12:43:55 +0200 Subject: [PATCH] actually use dash as the default shell (thanks raf) --- options/common/dash.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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; }