Commit 508c30c0f012

Vincent Demeester <vincent@sbr.pm>
2020-05-06 09:46:42
pkgs: add zsh to fhs-std
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ed616e5
Changed files (1)
pkgs
pkgs/fhs/std.nix
@@ -3,7 +3,12 @@
 buildFHSUserEnv {
   name = "fhs-std";
   targetPkgs = pkgs: with pkgs; [
-    envsubst exa git gnumake coreutils
+    envsubst
+    exa
+    git
+    gnumake
+    coreutils
+    zsh
   ];
-  runScript = "/bin/bash";
+  runScript = "/bin/zsh";
 }