13 lines
282 B
Nix
13 lines
282 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Configure zsh through programs.zsh instead of home.file
|
|
programs.zsh = {
|
|
enable = true;
|
|
initContent = ''
|
|
eval "$(starship init zsh)"
|
|
export PATH="''${KREW_ROOT:-/Users/${config.home.username}/.krew}/bin:$PATH"
|
|
'';
|
|
};
|
|
}
|