Files
dendritic/modules/programs/eza.nix
John Lancaster cf2ba8731d reorg
2026-03-11 08:49:07 -05:00

14 lines
347 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} -lgos type --no-time --follow-symlinks";
};
};
}