diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-29 15:35:04 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-29 15:35:04 +0200 |
commit | 8f35e3722acb6844e70708626b9d7fb7976e5eed (patch) | |
tree | 80fa46256085e0a7c0eaa58a7990eecb08e8e292 /hosts/configuration.nix | |
parent | Nix cleanup (diff) | |
download | nixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.tar.gz nixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.tar.bz2 nixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.zip |
Set dash as the default /bin/sh
Diffstat (limited to 'hosts/configuration.nix')
-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; |