Switched from exa to eza

Exa is unmaintained
This commit is contained in:
Alejandro Angulo 2023-09-14 18:19:10 -07:00
parent 1a10b475ee
commit fed569b1b6
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
4 changed files with 27 additions and 27 deletions

View file

@ -0,0 +1,25 @@
{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.aa.tools.eza;
in {
options.aa.tools.eza = with types; {
enable = mkEnableOption "eza";
};
config = mkIf cfg.enable {
aa.home.extraOptions = {
programs.eza = {
enable = true;
icons = true;
git = true;
enableAliases = true;
};
};
};
}