Switch shell to zsh

This commit is contained in:
SebastianStork 2024-05-21 08:57:19 +02:00
parent a96014bee2
commit c98192eb68
8 changed files with 1795 additions and 63 deletions

View file

@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
...
}:
{
config = lib.mkIf config.myConfig.shell.enable {
programs.zsh.plugins = [
{
name = "powerlevel10k";
src = pkgs.zsh-powerlevel10k;
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
}
{
name = "powerlevel10k-config";
src = ./.;
file = "p10k.zsh";
}
];
};
}