snowflake/home/lf/default.nix

19 lines
242 B
Nix
Raw Normal View History

2023-02-01 15:48:46 -05:00
{config, pkgs, ...}:
{
programs.lf = {
enable = true;
settings = {
shell = "nushell";
hidden = true;
icons = true;
drawbox = true;
ignorecase = true;
};
extraConfig = ''
'';
};
}