nixos-config/modules/home-manager/zsh.nix
2024-07-02 17:03:17 +09:00

28 lines
533 B
Nix

{ pkgs, ... }:
{
# Download zsh packages
packages = with pkgs; [
zsh
oh-my-zsh
starship
];
# Enable zsh
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
programs.zsh = {
oh-my-zsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
};
};
}