From 5124acb22bf9c0fc82a1299192c5c0b93638d1be Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 19:34:43 -0400 Subject: [PATCH] feat: add to environment shells --- users/profiles/shells/zsh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index c379735..79a413c 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -60,5 +60,8 @@ starship.enableZshIntegration = lib.mkIf config.programs.starship.enable true; }; - environment.pathsToLink = [ "/share/zsh" ]; + environment = { + pathsToLink = [ "/share/zsh" ]; + shells = [ pkgs.zsh ]; + }; }