feat: add to environment shells

This commit is contained in:
Infinidoge 2021-09-19 19:34:43 -04:00
parent b23f5ca57d
commit 5124acb22b

View file

@ -60,5 +60,8 @@
starship.enableZshIntegration = lib.mkIf config.programs.starship.enable true; starship.enableZshIntegration = lib.mkIf config.programs.starship.enable true;
}; };
environment.pathsToLink = [ "/share/zsh" ]; environment = {
pathsToLink = [ "/share/zsh" ];
shells = [ pkgs.zsh ];
};
} }