{ inputs, ... }: { imports = with inputs.self.homeModules; [ # Shells bash zsh # Tools files docker ]; flake.homeModules.shell = {pkgs, lib, ...}: { programs.eza = { enable = true; package = pkgs.eza; enableBashIntegration = true; enableZshIntegration = true; }; home.shell.enableShellIntegration = true; home.shellAliases = { ls = "${lib.getExe pkgs.eza} -lgos type --no-time --follow-symlinks"; }; }; }