Files
dendritic/modules/home-manager/profiles/files.nix
2026-03-08 13:31:33 -05:00

15 lines
265 B
Nix

{
flake.homeModules.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
];
};
}