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