diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-07-01 20:33:33 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-07-02 11:37:44 +0530 |
commit | ebf06b459aa04f9d650afc5b7e65ae5d4b497f1c (patch) | |
tree | 65a43b55d87d6f249dbe2844c268b91c971b96ce | |
parent | 5d25de3f5922c3b226ef4df2f974082e0979a3c4 (diff) |
configuration: link /bin/sh to dash
-rw-r--r-- | configuration.nix | 21 |
1 files 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"; } |