14 lines
170 B
Nix
14 lines
170 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
programs.eza = {
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
extraOptions = [
|
|
# "--group-directories-first"
|
|
];
|
|
};
|
|
}
|