This commit is contained in:
gwg313 2024-12-15 14:08:33 -05:00
parent 308bdbebf9
commit badcf3aa40
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
43 changed files with 1972 additions and 253 deletions

View file

@ -4,7 +4,8 @@
pkgs,
user,
...
}: {
}:
{
programs.zsh = {
enable = true;
shellAliases = {
@ -53,10 +54,10 @@
zplug = {
enable = true;
plugins = [
{name = "zsh-users/zsh-autosuggestions";}
{name = "zsh-users/zsh-completions";}
{name = "zsh-users/zsh-syntax-highlighting";}
{name = "MichaelAquilina/zsh-you-should-use";}
{ name = "zsh-users/zsh-autosuggestions"; }
{ name = "zsh-users/zsh-completions"; }
{ name = "zsh-users/zsh-syntax-highlighting"; }
{ name = "MichaelAquilina/zsh-you-should-use"; }
];
};
@ -75,6 +76,11 @@
};
initExtra = ''
eval $(thefuck --alias)
fastfetch
'';
};
home.packages = with pkgs; [
fastfetch
];
}