18 lines
322 B
Nix
18 lines
322 B
Nix
{
|
|
flake.modules.homeManager.files = { pkgs, lib, ... }:
|
|
{
|
|
programs.lf = {
|
|
enable = true;
|
|
cmdKeybindings = {
|
|
"D" = "delete";
|
|
};
|
|
settings = {
|
|
preview = true;
|
|
hidden = true;
|
|
drawbox = true;
|
|
icons = true;
|
|
ignorecase = true;
|
|
};
|
|
};
|
|
};
|
|
} |