diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 61a0958..0fe7791 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -1,6 +1,15 @@ { inputs, ... }: { - flake.homeModules.shell = { + flake.homeModules.shell = {pkgs, ...}: { + programs.eza = { + enable = true; + enableBashIntegration = true; + enableZshIntegration = true; + extraOptions = [ + "-lgos type --no-time" + ]; + }; + imports = with inputs.self.homeModules; [ zsh files diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index d214b53..0093084 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -3,7 +3,6 @@ flake.homeModules.zsh = { pkgs, config, lib, ... }: { home.packages = with pkgs; [ - eza zsh ];