about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-29 15:35:04 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-29 15:35:04 +0200
commit8f35e3722acb6844e70708626b9d7fb7976e5eed (patch)
tree80fa46256085e0a7c0eaa58a7990eecb08e8e292 /hosts
parentNix cleanup (diff)
downloadnixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.tar.gz
nixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.tar.bz2
nixos-config-8f35e3722acb6844e70708626b9d7fb7976e5eed.zip
Set dash as the default /bin/sh
Diffstat (limited to 'hosts')
-rw-r--r--hosts/configuration.nix3
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;