15 lines
223 B
Nix
15 lines
223 B
Nix
{pkgs, config, ...}:
|
|
{
|
|
xdg.configFile."lf/icons".source = ./icons;
|
|
programs.lf = {
|
|
enable = true;
|
|
settings = {
|
|
preview = true;
|
|
hidden = true;
|
|
drawbox = true;
|
|
icons = true;
|
|
ignorecase = true;
|
|
};
|
|
};
|
|
}
|