diff options
| author | Baitinq <[email protected]> | 2022-08-29 15:35:04 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-08-29 15:35:04 +0200 |
| commit | 20f7092f81ae4c81de943028da5a0a2ec1fb2839 (patch) | |
| tree | 12260d050fa89d90b035657ac3142f17129ed8b3 | |
| parent | Nix cleanup (diff) | |
| download | nixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.tar.gz nixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.tar.bz2 nixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.zip | |
Set dash as the default /bin/sh
| -rw-r--r-- | hosts/configuration.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index b26238a..a0ae88b 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -86,6 +86,7 @@ # $ nix search wget environment.systemPackages = with pkgs; [ (uutils-coreutils.override { prefix = ""; }) + dash lm_sensors pulseaudio # used for tools python @@ -108,6 +109,8 @@ environment.defaultPackages = [ ]; + environment.binsh = "${pkgs.dash}/bin/dash"; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; |