home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 508c30c0f01240f102270015db70f41b95fe8fa1
parent ed616e53d81d7cb5b6ba3317dedd0ced48e688d0
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed,  6 May 2020 09:46:42 +0200

pkgs: add zsh to fhs-std

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mpkgs/fhs/std.nix | 9+++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/pkgs/fhs/std.nix b/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"; }