dotfiles/modules/tools/exa/default.nix
Alejandro Angulo 2c18824cea
Added exa config
Updated lockfile to use an updated version of the exa module in
home-manager.
2023-03-19 09:40:46 -07:00

26 lines
374 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.aa.tools.exa;
in {
options.aa.tools.exa = with types; {
enable = mkEnableOption "exa";
};
config = mkIf cfg.enable {
aa.home.extraOptions = {
programs.exa = {
enable = true;
icons = true;
git = true;
enableAliases = true;
};
};
};
}