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