nixos-config/modules/home-manager/shell/default.nix
2024-07-15 12:29:56 +09:00

32 lines
513 B
Nix

{ pkgs, ... }:
{
imports = [
./oh-my-posh
];
# 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"
];
};
};
}