Files
dendritic/modules/home-manager/programs/files.nix
2026-03-10 22:39:30 -05:00

15 lines
273 B
Nix

{
flake.modules.homeManager.files = { pkgs, ... }:
{
programs.lf.enable = true;
programs.lf.cmdKeybindings = {
"D" = "delete";
};
home.packages = with pkgs; [
gdu
lf
# TODO: find a CLI file editor that's not insane
];
};
}