From d49c719f3696aa675710ae2077d83df1fbbe58a8 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 13 Nov 2018 01:06:23 +0100 Subject: [PATCH] fixup! nix/os: make zsh the default shell for common systems --- nix/os/profiles/common/system.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/os/profiles/common/system.nix b/nix/os/profiles/common/system.nix index 08e49f7..b00e912 100644 --- a/nix/os/profiles/common/system.nix +++ b/nix/os/profiles/common/system.nix @@ -65,6 +65,7 @@ mv -Tf /lib64/.ld-linux-x86-64.so.2 /lib64/ld-linux-x86-64.so.2 ''; + programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; environment.pathsToLink = [ "/share/zsh" ]; }