Alejandro Angulo
2c18824cea
Updated lockfile to use an updated version of the exa module in home-manager.
26 lines
374 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|