From a097565af7a691b3adfc94ab0d9df0e06d8824f1 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 1 Jul 2023 20:33:33 +0530 Subject: configuration: link /bin/sh to dash --- configuration.nix | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/configuration.nix b/configuration.nix index b9eb541..64377f1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -40,14 +40,17 @@ in services.getty.autologinUser = user; # system - environment.systemPackages = with pkgs; [ - file - openssl - git - htop - curl - neovim - wget - ]; + environment = { + binsh = "${pkgs.dash}/bin/dash"; + systemPackages = with pkgs; [ + file + openssl + git + htop + curl + neovim + wget + ]; + }; system.stateVersion = "23.05"; } -- cgit v1.2.3