From 621e1673e780490d785c9755697ef6a96803a35b Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Tue, 30 Jun 2026 18:44:37 +0200 Subject: [PATCH] Set /bin/sh to dash --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index eea895b..41cd649 100644 --- a/configuration.nix +++ b/configuration.nix @@ -151,6 +151,9 @@ in # To disable the firewall altogether. # networking.firewall.enable = false; + # Replaces /bin/sh with dash (which is faster than bash) + environment.binsh = "${pkgs.dash}/bin/dash"; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave