From 64ed7ca735875577f9f212a833aa814b05b477ac Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:58:18 -0600 Subject: [PATCH] moved eza config --- modules/home-manager/shell.nix | 11 ++++++++++- modules/home-manager/zsh.nix | 1 - 2 files changed, 10 insertions(+), 2 deletions(-) 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 ];