about summary refs log tree commit diff
path: root/hosts/configuration.nix
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2022-08-29 15:35:04 +0200
committerBaitinq <[email protected]>2022-08-29 15:35:04 +0200
commit20f7092f81ae4c81de943028da5a0a2ec1fb2839 (patch)
tree12260d050fa89d90b035657ac3142f17129ed8b3 /hosts/configuration.nix
parentNix cleanup (diff)
downloadnixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.tar.gz
nixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.tar.bz2
nixos-config-20f7092f81ae4c81de943028da5a0a2ec1fb2839.zip
Set dash as the default /bin/sh
Diffstat (limited to '')
-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;