flake

Francesco Saccone's Nix flake.
git clone git://git.francescosaccone.com/flake
Log | Files | Refs | README | LICENSE

commit 49871c374df4de6e33845576170a75e8de6db884
parent e7aca016305d1c96e6264d25c96a115b3257dd31
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Tue, 25 Mar 2025 16:03:42 +0100

feat: use mksh as default shell instead of dash

Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>

Diffstat:
Mhosts/common/default.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hosts/common/default.nix b/hosts/common/default.nix @@ -18,7 +18,7 @@ users = { mutableUsers = false; - defaultUserShell = "${pkgs.dash}/bin/dash"; + defaultUserShell = "${pkgs.mksh}/bin/mksh"; users.root = { hashedPassword = "!"; };