fix: use shell alias for fastfetch to avoid quirks

This commit is contained in:
Youwen Wu 2024-10-29 23:39:02 -07:00
parent 0531b0acc6
commit 5df2c73f9b
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 1 additions and 4 deletions

View file

@ -101,6 +101,7 @@ in
enable = true; enable = true;
shellAliases = { shellAliases = {
ls = "eza -l --icons=auto"; ls = "eza -l --icons=auto";
neofetch = "${pkgs.fastfetch}/bin/fastfetch";
}; };
# shellInit = '' # shellInit = ''
# oh-my-posh disable notice # oh-my-posh disable notice

View file

@ -5,8 +5,4 @@
programs.fastfetch = { programs.fastfetch = {
enable = true; enable = true;
}; };
home.packages = [
(pkgs.writeShellScriptBin "neofetch" "${pkgs.fastfetch}/bin/fastfetch")
];
} }