snowflake/modules/home/lf/default.nix
2023-02-01 15:48:46 -05:00

19 lines
242 B
Nix

{config, pkgs, ...}:
{
programs.lf = {
enable = true;
settings = {
shell = "nushell";
hidden = true;
icons = true;
drawbox = true;
ignorecase = true;
};
extraConfig = ''
'';
};
}