{ inputs, pkgs, lib, ... }: { flake.homeModules.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"; }; }; }