From ebf06b459aa04f9d650afc5b7e65ae5d4b497f1c 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(-) (limited to 'configuration.nix') 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