nixos-config/modules/home-manager/zsh.nix
2024-07-03 20:44:30 +09:00

32 lines
576 B
Nix

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