Common/eza: enable git and icon support

This commit is contained in:
Toast 2024-10-24 14:07:32 +02:00
parent f58fdb8d49
commit 67716baa54

View file

@ -1,8 +1,12 @@
{pkgs, ...}: {
home-manager = {
users.toast.programs.eza = {
enable = true;
enableBashIntegration = true;
users.toast = {
programs.eza = {
enable = true;
enableBashIntegration = true;
git = true;
icons = "auto";
};
};
};
}