13 lines
162 B
Nix
13 lines
162 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs = {
|
|
eza = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
git = true;
|
|
icons = false;
|
|
};
|
|
};
|
|
}
|