Files
dendritic/modules/programs/eza.nix
T
2026-04-04 13:33:02 -05:00

14 lines
350 B
Nix

{ inputs, pkgs, lib, ... }:
{
flake.modules.homeManager.eza = { pkgs, lib, ... }: {
programs.eza = {
enable = true;
package = pkgs.eza;
enableBashIntegration = true;
enableZshIntegration = true;
};
home.shellAliases = {
ls = "${lib.getExe pkgs.eza} -algos type --follow-symlinks --all --all";
};
};
}