moved eza config

This commit is contained in:
John Lancaster
2026-02-16 13:58:18 -06:00
parent 8c42e5a8f4
commit 64ed7ca735
2 changed files with 10 additions and 2 deletions

View File

@@ -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

View File

@@ -3,7 +3,6 @@
flake.homeModules.zsh = { pkgs, config, lib, ... }:
{
home.packages = with pkgs; [
eza
zsh
];