Files
dendritic/modules/programs/files.nix
T
John Lancaster a5a10772d1 reworked jsl-zsh
2026-04-17 00:22:45 -05:00

25 lines
496 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;
};
};
home.packages = with pkgs; [
# gdu
# (writeShellScriptBin "lfcd" ''
# . <(${lib.getExe pkgs.lf} -print-last-dir | sed 's/^/cd /')
# '')
];
};
}