16 lines
225 B
Nix
16 lines
225 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.lf = {
|
|
enable = true;
|
|
settings = {
|
|
shell = "nushell";
|
|
hidden = true;
|
|
icons = true;
|
|
drawbox = true;
|
|
ignorecase = true;
|
|
color256 = true;
|
|
};
|
|
};
|
|
}
|