mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
15 lines
250 B
Nix
15 lines
250 B
Nix
# Eza is a ls replacement
|
|
{pkgs-stable, ...}: {
|
|
programs.eza = {
|
|
enable = true;
|
|
package = pkgs-stable.eza;
|
|
icons = "auto";
|
|
|
|
extraOptions = [
|
|
"--group-directories-first"
|
|
"--no-quotes"
|
|
"--icons=always"
|
|
];
|
|
};
|
|
}
|