diff options
| author | sinanmohd <sinan@sinanmohd.com> | 2025-12-26 15:48:23 +0530 |
|---|---|---|
| committer | sinanmohd <sinan@sinanmohd.com> | 2025-12-26 15:48:25 +0530 |
| commit | 04381c13682a9a7f1e29595bf3edf2abdc55c3b3 (patch) | |
| tree | e528b802a2554d6bebb3c59457c80b6bbd5ce2a3 /os | |
| parent | 2f1df0f1e0e86d8953db8dde7c2a53a9306661c4 (diff) | |
chore(os/common): linked /bin/sh to bash
ssh-copy-id breaks on dash after this
https://github.com/openssh/openssh-portable/commit/7fc9ccdce18841ebd0a97e31e43258512ab32a32
Diffstat (limited to 'os')
| -rw-r--r-- | os/common/modules/environment.nix | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/os/common/modules/environment.nix b/os/common/modules/environment.nix index 576d756..790f5fc 100644 --- a/os/common/modules/environment.nix +++ b/os/common/modules/environment.nix @@ -1,11 +1,7 @@ -{ pkgs, lib, ... }: +{ pkgs, ... }: { environment = { - binsh = lib.getExe pkgs.dash; - systemPackages = with pkgs; [ - dash - neovim - ]; + systemPackages = with pkgs; [ neovim ]; variables = { EDITOR = "nvim"; |
