19 lines
242 B
Nix
19 lines
242 B
Nix
{
|
|
default,
|
|
...
|
|
}: {
|
|
programs.lf = {
|
|
enable = true;
|
|
settings = {
|
|
shell = "nushell";
|
|
hidden = true;
|
|
icons = true;
|
|
drawbox = true;
|
|
ignorecase = true;
|
|
};
|
|
extraConfig = ''
|
|
|
|
'';
|
|
};
|
|
|
|
}
|