24 lines
515 B
Nix
24 lines
515 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.modules.homeManager.eza = { config, pkgs, lib, ... }: {
|
|
programs.eza = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
git = true;
|
|
icons = "auto";
|
|
colors = "auto";
|
|
extraOptions = [
|
|
"--all"
|
|
"--long"
|
|
"--group-directories-first"
|
|
"--sort=type"
|
|
"--dereference"
|
|
"--octal-permissions"
|
|
"--smart-group"
|
|
"--no-time"
|
|
"--git"
|
|
];
|
|
};
|
|
};
|
|
} |