This commit is contained in:
John Lancaster
2026-03-11 08:49:07 -05:00
parent dac3b84ffb
commit cf2ba8731d
19 changed files with 56 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
{
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
];
};
}