actually use dash as the default shell (thanks raf)

This commit is contained in:
jacekpoz 2024-07-13 12:43:55 +02:00
parent 20eee01a7f
commit 88f71c5e67
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -1,6 +1,9 @@
{
lib,
pkgs,
...
}: {
users.defaultUserShell = pkgs.dash;
}: let
inherit (lib) getExe;
in {
environment.binsh = getExe pkgs.dash;
}